.booking__container .input__group {
    position: relative;
    width: 100%;
      }

    .booking__container .input__group select {
      width: 100%;
      padding: 12px;
      font-size: 1rem;
      border-radius: 5px;
      color: var(--text-dark);
      cursor: pointer;
      appearance: none; /* Removes default dropdown styling */
      background: transparent; /* Makes the dropdown transparent */
      border: none; /* Removes border */
      position: relative;
     }

    .booking__container .input__group label {
      position: absolute;
      top: -15px; /* Moves the label up */
      left: 10px;
      font-size: 0.9rem;
      /* background: var(--white); */
      padding: 0 5px;
      /* color: var(--primary-color); */
      font-weight: 500;
     }
     .booking__container .input__group::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px; /* Thickness of underline */
      background-color: var(--text-dark); /* Change this to match the Check Out underline color */
    }

    .nav__links {
        list-style: none;
        display: flex;
        gap: 15px;
        padding: 0;
    }

    .nav__links li {
        display: inline-block;
    }

    .nav__links a {
        text-decoration: none;
        color: #333;
        padding: 8px 12px;
        transition: 0.3s;
    }

    .login-btn a {
        background-color: #007bff;
        color: white;
        padding: 6px 12px;
        border-radius: 5px;
        font-weight: bold;
    }

    .login-btn a:hover {
        background-color: #0056b3;
    }

    /* Modal styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  }

  .modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
  }

  .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
  }

  .input-group {
    margin-bottom: 15px;
    text-align: left;
  }

  .input-group label {
    display: block;
    font-weight: bold;
  }

  .input-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
  }

  button:hover {
    background-color: #0056b3;
  }




    .room-amenities {
        background: #f8f9fa;
        padding: 10px;
        border-radius: 8px;
        max-width: 200px;
    }
  
    .room-amenities h4 {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 5px;
    }
  
    .room-amenities ul {
        list-style-type: none;
        padding: 0;
    }
  
    .room-amenities li {
        font-size: 12px;
        color: #555;
        padding: 3px 0;
    }
  
    /* Container */
    .search-container {
        width: 90%;
        margin: 0 auto;
        padding: 20px;
        font-family: 'Arial', sans-serif;
    }
  
    /* No available rooms message */
    .no-rooms {
        text-align: center;
        font-size: 18px;
        color: #888;
    }
  
    /* Room list grid */
    .room-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
  
    /* Room card */
    .room-card {
        display: flex;
        align-items: center;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        padding: 15px;
        /* display: flex; */
        justify-content: space-between;
        /* align-items: center; */
    }
  
    /* Room image */
    .room-image {
        width: 200px;
        height: 150px;
        object-fit: cover;
        border-radius: 10px;
    }
  
    /* Room details */
    .room-details {
        padding: 15px;
        flex: 1;
    }
  
    /* Room title */
    .room-title {
        font-size: 18px;
        font-weight: bold;
        color: #333;
        margin-bottom: 5px;
    }
  
    /* Room info */
    .room-info {
        font-size: 14px;
        color: #555;
    }
  
    /* Room cost */
    .room-cost {
        font-size: 16px;
        font-weight: bold;
        color: #007bff;
    }
  
    /* Status label */
    .status-label {
        font-weight: bold;
        color: #28a745;
    }
  
    /* Book button */
    .book-btn {
        display: inline-block;
        padding: 8px 16px;
        background: #007bff;
        color: #fff;
        text-decoration: none;
        border-radius: 8px;
        font-size: 14px;
        margin-top: 10px;
        text-align: center;
    }
  
    .book-btn:hover {
        background: #0056b3;
    }