
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: monospace;
}

body {
    background-color: #001a00;
    background: linear-gradient(90deg, #001a00, #000000); /* Gradient colors and direction */
    color: #29e208;
    display: grid;
    justify-content: center;
    align-items: center;
    height: 90%;
    
    /* overflow: hidden; */
}
::-webkit-scrollbar{
  scrollbar-width: thin;          /* Narrow scrollbar */
  scrollbar-color: #25b609 #001a00; 
}
::-webkit-scrollbar-track {
  background: #001a00;            /* Light gray track */
}
::-webkit-scrollbar-thumb {
  background-color: #001a00;         /* Darker thumb */
  border-radius: 10px;            /* Rounded corners for thumb */
  border: 2px solid #25b609; 
}
.navbar {
  display: flex;
  justify-content: space-between; /* Space between logo and menu */
  align-items: center; /* Vertically center items */
  padding: 5px 10px;
}



/* Menu container styles */
.menu {
  display: flex;
  gap: 20px; /* Space between menu items */
}

.menu-item {
  position: relative; /* For dropdown positioning */
}

.menu-item > a {
  text-decoration: none;
  padding: 5px 5px;
  display: block;
}

.menu-item > a:hover {
  background-color: #017901;
  border-radius: 5px;
}

/* Dropdown menu */
.dropdown {
  display: none; /* Hide dropdown by default */
  position: absolute;
  top: 100%; /* Position dropdown below the parent item */
  left: 0;
  background-color: #001a00;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown > .dropdown-item {
  padding: 5px 5px;
}

.dropdown > .dropdown-item > a {
  text-decoration: none;
  display: block;
}

.dropdown > .dropdown-item > a:hover {
  background-color: #017901;
}

/* Show dropdown on hover */
.menu-item:hover .dropdown {
  display: block;
}

.container {
    max-width: 93%;
    padding: 20px;
    text-align: center;
    border: 2px solid #39ff14;
    border-radius: 10px;
    margin: auto;
}
.countrylist {
  max-width: 100%;
  padding: 20px;
  text-align: justify;
  border: 2px solid #39ff14;
  border-radius: 10px;
  margin: auto;
}
.country{
  height: 20vh;
  padding: 20px;

}
.country:hover{
  background-color:  #1a471c;
}

header .branding h1 {
    font-size: 2em;
    font-weight: bold;
}

header .tagline {
    margin-top: 5px;
    font-size: 1em;
    color: #0aff0a;
    text-align: center;
}

.main {
    margin-top: 20px;
}

.map {
  position: relative;
}

.grid-container {
    display: flex; /* Enable flexbox */
    justify-content: space-between; /* Distribute space evenly between items */
    gap: 5px; /* Add space between columns */
    align-items: flex-start; /* Align items at the top */
    border-color: #0aff0a;
    border-radius: 5px;
    padding: 1px;
}
.grid-container > div {
  flex: 1; /* Make all items take equal space */
  max-width: 33%; /* Ensure columns do not exceed 1/3 of the container */
  box-sizing: border-box; /* Include padding in width calculation */
}
       /* Specific styles for item2 (middle column) */
.item2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px; /* Spacing between inner elements */
}

/* Image scaling in item3 */
  .item3 img {
  width: 100%;
  height: auto;
}


.process-bar {
    margin-top: 15px;
}

.process-bar p {
    font-size: 1em;
}

.progress-bar {
    width: 75%;
    height: 5px;
    background-color: #0a330a;
    margin: 5px auto;
    position: relative;
}

.progress {
    width: 50%;
    height: 100%;
    background-color: #39ff14;
    animation: progress 3s linear infinite alternate;
}

.info-section {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #39ff14;
}

footer {
    margin-top: 20px;
    font-size: 0.9em;
    color: #0aff0a;
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 88%; }
}
#chartdiv {
    width: 100%;
    height: 300px;
  max-width:100%;
    
  }
  .counter {
    font-size: 2em;
    font-weight: bold;
  }

  .styled-button {
    background-color: #001a00;
    color: #25b609;   /* White text */
    padding: 10px 20px;        /* Padding */
    border-color: rgb(0, 187, 0);              /* Remove border */
    border-radius: 5px;        /* Rounded corners */
    cursor: pointer;
    margin: 5px; 
             /* Pointer cursor on hover */
  }

  .styled-button:hover {
    background-color: #45a049; /* Darker green on hover */
    color: #001a00;
  }

  table {
    width: 100%;       /* Make table fill container width */
    border-collapse: collapse; /* Remove gaps between cells */
    margin-top: 10px;
  }
  td {
    padding: 10px; /* Add padding */
    
    text-align: center; /* Align text to the left */
    transition: background-color 0.3s; /* Smooth transition */
  }
  /* Highlight cell on hover */
  td:hover {
    background-color:  #45a049; /* Light blue color on hover */
  }
  a {
    text-decoration: none; /* Remove underline */
    color: #39ff14; /* Link color */
  }
  a:hover {
    color: #ffffff; /* Darker color on hover */
  }
  .table-container {
    max-height: 120px;          /* Set height to fit approximately 3 rows */
    overflow-y: auto;           /* Enable vertical scrolling */
    
  }
  table {
    width: 100%;                
    border-collapse: collapse;  
  }
 /* Custom scrollbar styling */
 .table-container::-webkit-scrollbar {
    width: 5px;                     /* Narrow scrollbar width */
  }
  .table-container::-webkit-scrollbar-track {
    background: #001a00;            /* Light gray track */
  }
  .table-container::-webkit-scrollbar-thumb {
    background-color: #001a00;         /* Darker thumb */
    border-radius: 10px;            /* Rounded corners for thumb */
    border: 2px solid #25b609;      /* Creates a space around the thumb */
  }
  /* For Firefox */
  .table-container {
    scrollbar-width: thin;          /* Narrow scrollbar */
    scrollbar-color: #25b609 #001a00;  /* Thumb and track color */
  }
  .cursor {
    display: inline-block;
    width: 10px; /* Adjust width for appearance */
    height: 1em;
    background-color: #0f0; /* Matches text color */
    animation: blink 0.8s steps(2, start) infinite; /* Animation setup */
    vertical-align: center; /* Aligns cursor with text */
  }
  @keyframes blink {
    0%, 100% { opacity: 1; } /* Visible at start and end */
    50% { opacity: 0; }      /* Invisible in the middle */
  }

  input[type="email"] {
    width: 300px; /* Adjust the width */
    padding: 10px; /* Add some padding */
    font-size: 16px; /* Increase font size */
    border: 1px solid #25b609; /* Light gray border */
    background-color: #bae9ba;
    border-radius: 5px; /* Rounded corners */
  }

   /* Add focus effect */
   input[type="email"]:focus {
    border-color: #007BFF; /* Change border color on focus */
    outline: none; /* Remove outline */
   }
  textarea[id="message"] {
    width: 300px; /* Adjust the width */
    padding: 10px; /* Add some padding */
    font-size: 16px; /* Increase font size */
    border: 1px solid #25b609; /* Light gray border */
    background-color: #bae9ba;
    border-radius: 5px; /* Rounded corners */
  }
    input[type="text"] {
    width: 300px; /* Adjust the width */
    padding: 10px; /* Add some padding */
    font-size: 16px; /* Increase font size */
    border: 1px solid #25b609; /* Light gray border */
    background-color: #bae9ba;
    border-radius: 5px; /* Rounded corners */
  }


/* Responsive adjustments */
@media (max-width: 768px) {
.grid-container {
    flex-direction: column; /* Stack columns vertically on smaller screens */
}

.grid-container > div {
    max-width: 100%; /* Ensure full width in stacked layout */
}
}


