/*{
    margin: 0;
    padding: 0;

    box-sizing: border-box;
    font-family: Helvetica;
}
*/
.head-container{
  position: flex;
  justify-content: center;
  align-items: center;

  display: flex; /* Enables flexbox layout */
  flex-direction: column; /* Stacks items vertically */
  height: 200px;
}

html {
  scroll-padding-top: 550px;
}

.eatlogo{
    height: 125px;
    width: 600px;

    margin-top: 2px;   
    margin-bottom: 2px;
}



body {
    min-height: 100vh;
    background-color: #a3c0ef;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 img {
    height: 125px;
    width: 350px;

    margin-top: 1px;   

}

.brand{
    height: 125px;
    width: 350px;

    margin-top: 20px;   

}

.stateflag
{
    height: 75px; 
    width: 100px;
}


.flagcaption{
    height: 75px; 
    width: 100px; 
    text-align: center;
    font-size: 15px;  
    font-weight: 500;
}


.brand-image{
    height: 300px;
    width: 400px;

    margin-top: 10px;   
    margin-bottom: 100px;  
}



.table__header img{
    width: 50%;
    height: 15vh;
    background-color: #fff4;
    padding: .1rem 1rem;

    display: flex;
    align-items: center;
    margin-bottom: 10px; 
}

.table__header {
    width: 100%;
    height: 20vh;
    background-color: #fff4;
    padding: .1rem 1rem;
    vertical-align: left;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.input-group {
    width: 300px;
    height: 30px;
    background-color: rgba(249, 245, 245, 0.648);
    padding: 0 .8rem;
    border-radius: 2rem;

    display: flex;
    justify-content: space-between;
    align-items: center;   
    
    text-align: center;
    transition: .2s;

    margin-left: auto;
    margin-right: auto;

}
.input-group input{

    padding: 0 .1rem 0 .3rem;
    background-color: transparent;
    border: none;
    outline: none;
    text-align: left;
    justify-content: center;

    width: 300px;

}

.input-group:hover{
    width: 300px;
    background-color: rgba(248, 242, 242, 0.969);
    box-shadow: 0 .1rem .4rem #0002;
}


.table__header .input-group {
    width: 35%;
    height: 20%;
    background-color: #fff5;
    padding: 0 .8rem;
    border-radius: 2rem;

    display: flex;
    justify-content: space-between;
    align-items: center;   
    
    transition: .2s;

}

.table__header .input-group img{
    width: 1.2rem;
    height: 1.2rem;

}

.table__header .input-group input{
    width: 100%;
    padding: 0 .5rem 0 .3rem;
    background-color: transparent;
    border: none;
    outline: none;

}

.table__header .input-group:hover{
    width: 45%;
    background-color: #fff8;
    box-shadow: 0 .1rem .4rem #0002;
}

.table__body {
    width: 95%;
    max-height: 95%;
    background-color: #fffb;

    margin: 2rem auto;
    border-radius: .6rem;

    overflow: auto;
    overflow: overlay;
}

.table__body::-webkit-scrollbar{
    width: 0.5rem;
    height: 0.5rem;
}

.table__body::-webkit-scrollbar-thumb{
    border-radius: .5rem;
    background-color: #0004;
    visibility: hidden;
}

.table__body:hover::-webkit-scrollbar-thumb{
    visibility: visible;
}


table, th, td {
    border-collapse: collapse;
    padding: .3rem;

}


thead th {
    position: sticky;
    top: 0;
    left: 0;
    background-color: #4b308bfe;

    text-align: left;

}


.hidden {
        display: none;
    }



#card-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0px;

}
.card{
    width: 325px;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
    margin: 7px;
    height: auto;
    margin-top: 2px;
}

.card img{
    width: 1000px;
    height: 100px;
    text-align: center;
    padding: 2px;
}


.card tr td img{
    width: 50px;
    height: 50px;
    text-align: left;
    padding: 2px;
    margin: 2px;
}
    

.card-content1 {
    padding: 10px;
    padding-left: 10px;
    padding-right: 10px;
    /*height: 400px;*/
    width: 100%;
    display: inline-block;
    vertical-align: top;
}

.card-content1 table {
    width: 100%;
}


.card .rest-img{
    width: 150px;
    height: 100px;
    text-align: center;
    padding: 2px;
    border-radius: 5%;
    background-color: rgb(195, 193, 193);
}

header{
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #618dec;

    left: 2px;
    margin: 0;
    padding: 0;
    height: 165px;
    width: 100%;

}

.card .menu__icon{
    height: 55px;
    width: 55px;
}

.oval-word {
  display: inline-block; /* Allows padding and margin to be applied */
  padding: 3px 10px;    /* Adjust padding for the desired oval size and spacing */
  margin-bottom: 3px;
  margin-right: 3px;
  border: 2px solid blue; /* Set border color and thickness */
  border-radius: 2rem;   /* Creates the oval shape */
  font-size: 10px;
}






.dropbtn {
  background-color: #3D5C7F;
  color: white;
  padding: 12px;
  font-size: 12px;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  margin-right: 10px;
}
.dropdown {
    position: absolute; 
    right: 20px; 
    top: 4px; 
    margin-right: 2px; 

}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
    font-size: 12px;
  min-width: 150px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  right: 0;
  left: auto;
}
.dropdown-content ul li {
  color: #f1f1f1;
  padding: 2px;
  text-decoration: none;
  display: block;
  background-color: #3D5C7F; 

}


li a {
    text-decoration: none;
    color: #f1f1f1;
}


.dropdown-content a:hover {background-color: #6e9eeb}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .dropbtn {
  background-color: #3D5C7F;
}

.dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown li {
    position: relative; /* Positions the submenu relative to its parent li */
    display: inline-block; /* Aligns main menu items horizontally */
}

.dropdown a {
    display: block;
    padding: 5px 10px;
    text-decoration: none;
    color: #000;
    background-color: #f1f1f1;
}

/* Submenu content (hidden by default) */
.submenu {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 130px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    /* For vertical dropdowns */
    top: 100%; 
    left: 40px;
}


/* Show the dropdown menu on hover */
.has-submenu:hover > .submenu{
    display: block;
}

/* Style links on hover */
li a:hover {
    background-color: #ddd;
}


/* Default Desktop Styles */
.hamburger-icon {
  display: none; /* Hide on desktop */
}
.nav-links {
  display: flex; /* Show links horizontally */
}

/* Mobile Styles (e.g., screens smaller than 768px) */
@media (max-width: 768px) {
  .hamburger-icon {
    display: block; /* Show icon on mobile */
    font-size: 24px;
    cursor: pointer;
    /* Add positioning for the icon, e.g., top-right */
  }
  .dropdown-content {
    display: none; /* Hide links by default on mobile */
    flex-direction: column; /* Stack links vertically */
    /* Add styling for the drawer (position, background, etc.) */
  }
  .dropbtn 
  {
    display: none;
  }
  .dropdown-content.open {
    display: flex; /* Show when 'open' class is added */
  }
 
  .brand {
    height: 100px;
    width: 225px;
    margin-top: 20px;   
  }

  .stateflag
  {
    height: 50px; 
    width: 70px;
  }

  .flagcaption{
    height: 50px; 
    width: 70px; 
    text-align: center;
    font-size: 13px;  
    font-weight: 500;
}

  
}


.map-link {
    position: relative; /* Container for absolute positioning of text */
    display: inline-block; /* Allows the link to wrap around the image correctly */
    text-decoration: none; /* Removes default link underline */
}

.hover-map-text {
    position: absolute; /* Position the text over the image */
    bottom: 0; /* Align to the bottom (adjust as needed) */
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    color: white;
    padding: 10px;
    text-align: center;
    display: none; /* Hide the text by default */
    font-size: 12px;
}

.map-link:hover .hover-map-text {
    display: block; /* Show the text when hovering over the link container */
}

