body{
    background-color: whitesmoke;
  }
  .navbar .account {
    list-style-type: none;
    text-align: center;
    margin: 0;
    padding: 0;
  }
  
  .navbar .account li {
    display: inline-block;
    font-size: 20px;
    padding: 5px;
  }
  .submenu {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  .submenu li {
    display: inline-block;
    padding-right: 5px;
  }
  .submenu .active{
    text-decoration: none;
    color: whitesmoke;
    font-size: 15px;
    padding: 5px;
    border-radius: 12px;
    border: 1px solid whitesmoke;
  }
  .submenu .nactive{
    text-decoration: none;
    color: whitesmoke;
    font-size: 15px;
    padding: 5px;
  }
  .submenu li a:hover {
    background-color: wheat;
    color:black;
    border-radius: 12px;
  }
  .search-container {
        display: flex;
        align-items: center;
        background-color: #f5a623;
        padding: 5px;
        border-radius: 5px;
        /*margin: 20px;*/
    }
    .search-container div {
        margin-right: 10px;
        background-color: white;
        padding: 10px;
        border-radius: 5px;
        flex: 1;
        display: flex;
        align-items: center;
    }
    .search-container input {
        border: none;
        outline: none;
        width: 100%;
    }
    .search-container button {
        background-color: #007bff;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
    }
    .search-container button:hover {
        background-color: #0056b3;
    }

.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.destination {
    position: relative;
    width: 500px;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.destination img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
}

h2 {
    margin: 0;
    font-size: 18px;
}

.flag {
    font-size: 16px;
}


.hotel-card {
    border: 1px solid #d1e0e0;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}
.hotel-card img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
}
.hotel-title {
    color: #003580;
}
.badge-warning {
    background-color: #ffc107;
    color: #000;
}
.rating {
    background-color: #003580;
    color: #fff;
    padding: 5px;
    border-radius: 4px;
}
.availability-btn {
    background-color: #0071c2;
    color: #fff;
}
.featured-badge {
    background-color: #f7d358;
    color: #000;
}
.hotel-title-detail {
    text-align: center;
    margin-top: 20px;
}
.gallery img {
    width: 100%;
    height: auto;
}
.gallery {
    margin-top: 20px;
}
.gallery1 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}
.main-image {
    height: 100%;
}
.more-photos {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

  .table_room th, td {
    border: 1px solid black;
    border-collapse: collapse;
    width: 70px;
    text-align: center;
  }