.BG_Transparent_Tab_Panel
{
    background-color: rgba(202, 202, 202, 0.4);
    min-height: 150px;
    padding: 10px;
}

.nav.nav-Panel{
    border-bottom: 1px solid #fff6; 
    padding-bottom: 10px;
}

.nav-Panel li button
{
  color: #000;
}

.nav-Panel li.divider
{ 
  border-left: 2px solid #f4f4f42e;
  height: auto;
  align-items: center;
  padding-top: 37px;
  margin-left: 10px;
  margin-right: 10px;
}

.nav-Panel li button.active
{
  border-bottom: 1px solid #00aeff;
  border-image: linear-gradient(to right, #add8e642, #00aeff, #add8e642);
  border-image-slice: 1;
  padding-bottom: 5px; 
  color: #000;
}

#Flight_Class, #Flight-Type, #Foreign_Flight_Class, #Foreign-Flight-Type {
    border-radius: 1rem; 
    border:1px solid #000; 
    padding-right: 30px; 
    padding-left: 20px; 
    background-color: #fff;
}

#Flight_Class:hover, #Flight-Type:hover, #Foreign_Flight_Class:hover, #Foreign-Flight-Type:hover
{
    cursor: pointer;
}

#Arrow-Circle, #Foreign-Arrow-Circle
{
  border: 1px solid #000; 
  height: 40px; 
  width: 40px; 
  background-color: #fff; 
  border-radius: 50%; 
  position: absolute; 
  right: 47.5%; 
  top:9px;
  padding-right: 12px;
  z-index: 9999;
  padding-top: 11px;
  padding-right: 11px;
  transition: transform 0.3s ease;      
}

#Arrow-Circle:hover, #Foreign-Arrow-Circle:hover
{
  background-color: #dbf3ff;
  cursor: pointer;
}

#Arrow-Circle.rotate, #Foreign-Arrow-Circle.rotate
{
    transform: rotate(180deg); /* Rotate circle by 180 degrees */
}     

.hidden
{
  display: none;
}

.form-floating input
{
  border-radius: 1rem; 
  border:1px solid #000; 
  text-overflow: ellipsis;
}
  
.form-floating input:hover
{
  cursor: pointer;
}

#Src_panel, #Des_panel, #Foreign_Src_panel, #Foreign_Des_panel
{
  margin-top: 5px; 
  border-radius: 1rem; 
  display: none; 
  background-color: rgb(255, 255, 255); 
  position: absolute; 
  width: 100%; 
  height: 200px; 
  z-index: 99999; 
  right: 0px; 
  border: 1px solid rgb(0, 0, 0); 
  padding: 10px;
  display: none;
  overflow-y: auto;
  padding-bottom: 0 20px;
}

#src-city-list, #des-city-list, #Foreign_src-city-list, #Foreign_des-city-list
{
  list-style-type: none;
  padding: 0;
}

#src-city-list li, #des-city-list li, #Foreign_src-city-list li, #Foreign_des-city-list li
{
  min-width: 100%;
  float: right;
  font-size: small;
}

#src-city-list li span, #des-city-list li span, #Foreign_src-city-list li span, #Foreign_des-city-list li span
{
  text-decoration: none;
  color: #000; /* Black color for city names */
}

#src-city-list li span:hover, #des-city-list li span:hover, #Foreign_src-city-list li span:hover, #Foreign_des-city-list li span:hover
{
  color: #095375;
  cursor: pointer;
  padding-right: 10px;
}

#Src-Warning, #Des-Warning, #Foreign-Src-Warning, #Foreign-Des-Warning
{
  position: absolute;
  top: 16px;
  left: 15px; 
  color: red;
  font-size: x-large;
}

#Add_Adt, #Dec_Adt, #Add_Chd, #Dec_Chd, #Add_Inf, #Dec_Inf,
#Foreign_Add_Adt, #Foreign_Dec_Adt, #Foreign_Add_Chd, #Foreign_Dec_Chd, #Foreign_Add_Inf, #Foreign_Dec_Inf
{
  border-radius: 50%;
  width: 25px;
  display: block;
  height: 25px;
  padding-right: 9px;
  padding-top: 1px;
  color: white;
  cursor: pointer;
}

#Age_Discription
{
  font-size: small; 
  margin-right: 12px;
}

#passenger_panel, #Foreign_passenger_panel
{ 
  width: 180%; 
  top: 63px; 
  border-radius: 1rem; 
  position: absolute; 
  border:1px solid #000;
}

ul, #myUL {
  list-style-type: none;
}

/* Remove margins and padding from the parent ul */
#Foreign_UL {
  margin: 0;
  padding: 0;
}

/* Style the caret/arrow */
.caret {
  cursor: pointer;
  user-select: none; /* Prevent text selection */
}

/* Create the caret/arrow with a unicode, and style it */
.caret::before {
  color: rgb(151, 151, 151);
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
}

/* Rotate the caret/arrow icon when clicked on (using JavaScript) */
.caret-down::before {
  color: rgb(151, 151, 151);
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
}

/* Hide the nested list */
.nested {
  display: none;

}

.nested li {
  font-size: smaller;
  border-right: 2px solid #10566b;
  padding-right: 5px;
}
.nested li:hover
{
  color: #095375;
  cursor: pointer;
  padding-right: 10px;

}

/* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
.active_node {
  display: block;
}