/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(123deg,rgb(157, 157, 157) ,rgb(255, 255, 255),rgb(238, 255, 238));
}

body::-webkit-scrollbar{
  width: 5px;
  background-color: #000000;
}

body::-webkit-scrollbar-thumb{
background-color: #393939e1;
border-radius: 9px;
}


/* General Styles for Navigation */
.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
  }
  
  .menu h1 {
    color: white;
    margin: 0;
  }
  
  .nav-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
  }
  
  .nav-list ul li {
    margin: 0 10px;
  }
  .nav-list ul li:hover{
   
    width: 100%;
    border-bottom: 1px solid white;
  }
  
  .nav-list ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
  }
  
  .nav-list ul li a:hover {
    color: #ddd;
  }
  
  .menu-icon {
    display: none;
    cursor: pointer;
  }
  
  .menu-icon i {
    font-size: 24px;
    color: white;
  }
  
  /* Media Query for Mobile */
  @media screen and (max-width: 768px) {
    .nav-list {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
      background-color: #333;
      text-align: center;
    }
  
    .nav-list ul {
      flex-direction: column;
    }
  
    .nav-list ul li {
      margin: 10px 0;
    }
  
    .menu-icon {
      display: block;
    }
  }
  
  /* Show the nav-list when active */
  .nav-list.active {
    display: flex;
  }
  
  /* Styling for larger screens */
  @media screen and (min-width: 769px) {
    .menu-button {
      display: none;
    }
  
    .nav-list {
      display: flex;
    }
  }
  

.travel-container {
    padding: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#countrySelect {
    padding: 10px;
    margin-bottom: 20px;
}

#travelDetails {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#travelDetails h2 {
    margin-bottom: 10px;
}

#travelDetails p {
    margin-bottom: 10px;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 20px;
}

h2 {
  text-align: center;
  color: #007BFF;
  margin-bottom: 20px;
}

.travelcost {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}

label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
}

select {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

button {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}

button:hover {
  background-color: #0056b3;
}

#travelCost {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

