@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
}
.logo {
    height: 50px;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

/* ================================================================================ */
/* ================= Login page styling start ==================== */
.login-container {
    background-color: white;
    border-radius: 0.75rem; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    padding: 2rem;
    max-width: 450px; 
    width: 95%; 
}
.logo {
    height: 50px; 
    margin-bottom: 1.5rem; 
}
.title {
    font-size: 1.5rem; 
    font-weight: 600; 
    color: #2d3748; 
    margin-bottom: 0.75rem; 
}
.subtitle {
    font-size: 0.875rem; 
    color: #718096;
    margin-bottom: 2rem;
}
.input-group {
    margin-bottom: 1.5rem; 
}
.input-group label {
    display: block;
    font-size: 0.875rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-weight: 500; 
}
.input-field {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.375rem; 
    border: 1px solid #e2e8f0; 
    font-size: 1rem;
    color: #2d3748;
    outline: none;
    transition: border-color 0.2s ease; 
}
.input-field:focus {
    border-color: #805ad5; 
    box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.15); 
}
.forgot-password {
    text-align: right;
    margin-bottom: 1.5rem; 
}
.forgot-password a {
    font-size: 0.875rem;
    color: #805ad5;
    text-decoration: none;
    transition: color 0.2s ease;
}
.forgot-password a:hover {
    color: #6b46c1; 
}
.login-button {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.375rem; 
    background-color: #805ad5; 
    color: white;
    font-size: 1rem;
    font-weight: 600; 
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}
.login-button:hover {
    background-color: #6b46c1; 
}
.register-link {
    text-align: center;
    margin-top: 1.5rem; 
    font-size: 1.2rem;
    color: #4a5568;
}
.register-link a {
    color: #805ad5; 
    text-decoration: none;
    font-weight: 600; 
    transition: color 0.2s ease;
}
.register-link a:hover {
    color: #6b46c1; 
}
.social-login {
    text-align: center;
    margin-top: 2rem;
}
.social-login p {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 1rem;
}
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 0.375rem; 
    border: 1px solid #e2e8f0; 
    width: 44px; 
    height: 44px;
    transition: border-color 0.2s ease;
}
.social-button:hover {
    border-color: #805ad5; 
    box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.15); 
}
.social-icon {
    width: 24px; 
    height: 24px;
}
.google-icon {
     /* Use the Google logo */
    background: url(https://upload.wikimedia.org/wikipedia/commons/5/53/Google_%22G%22_Logo.svg) no-repeat center center;
    background-size: contain;
    width: 24px;
    height: 24px;

}
.apple-icon {
    /* Use the Apple logo */
    background: url(https://upload.wikimedia.org/wikipedia/commons/f/fa/Apple_logo_black.svg) no-repeat center center;
    background-size: contain;
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .login-container {
        padding: 1.5rem; 
        width: 95%;
        max-width: 400px; 
    }
}


/* ================================================================================================== */
/* ========================= Sign Up page ======================== */

.sign-up-container {
            background-color: white;
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            max-width: 450px;
            width: 95%;
            text-align: center;
        }

        .logo {
            height: 50px;
            margin-bottom: 1.5rem;
            margin-left: auto;
            margin-right: auto;
        }

        .title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 0.75rem;
            text-align: center;
        }

        .subtitle {
            font-size: 0.875rem;
            color: #718096;
            margin-bottom: 2rem;
            text-align: center;
        }

        .input-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .input-group label {
            display: block;
            font-size: 0.875rem;
            color: #4a5568;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .input-field {
            width: 100%;
            padding: 0.75rem;
            border-radius: 0.375rem;
            border: 1px solid #e2e8f0;
            font-size: 1rem;
            color: #2d3748;
            outline: none;
            transition: border-color 0.2s ease;
        }

        .input-field:focus {
            border-color: #805ad5;
            box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.15);
        }

        .contact-number-input-group {
            display: flex;
            align-items: center;
        }

        .country-code-select {
            padding: 0.75rem;
            border-radius: 0.375rem 0 0 0.375rem;
            border: 1px solid #e2e8f0;
            border-right: none;
            font-size: 1rem;
            color: #2d3748;
            outline: none;
            width: auto;
            max-width: 100px;
        }

        .contact-number-input {
            flex: 1;
            padding: 0.75rem;
            border-radius: 0 0.375rem 0.375rem 0;
            border: 1px solid #e2e8f0;
            font-size: 1rem;
            color: #2d3748;
            outline: none;
            transition: border-color 0.2s ease;
        }

        .contact-number-input:focus {
            border-color: #805ad5;
            box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.15);
        }

        .password-input-group {
            position: relative;
            display: flex;
            align-items: center;
        }

        .password-input {
            width: 100%;
            padding: 0.75rem;
            border-radius: 0.375rem;
            border: 1px solid #e2e8f0;
            font-size: 1rem;
            color: #2d3748;
            outline: none;
            transition: border-color 0.2s ease;
        }

        .password-input:focus {
            border-color: #805ad5;
            box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.15);
        }

        .password-toggle-icon {
            position: absolute;
            right: 0.75rem;
            cursor: pointer;
            color: #718096;
        }


        .continue-button {
            width: 100%;
            padding: 0.75rem;
            border-radius: 0.375rem;
            background-color: #805ad5;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin-top: 2rem;
        }

        .continue-button:hover {
            background-color: #6b46c1;
        }

        .login-link {
            text-align: center;
            margin-top: 1.5rem;
            font-size: 0.875rem;
            color: #4a5568;
        }

        .login-link a {
            color: #805ad5;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .login-link a:hover {
            color: #6b46c1;
        }

        .social-login {
            text-align: center;
            margin-top: 2rem;
        }

        .social-login p {
            font-size: 0.875rem;
            color: #718096;
            margin-bottom: 1rem;
        }

        .social-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-button {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem;
            border-radius: 0.375rem;
            border: 1px solid #e2e8f0;
            width: 44px;
            height: 44px;
            transition: border-color 0.2s ease;
        }

        .social-button:hover {
            border-color: #805ad5;
            box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.15);
        }

        .social-icon {
            width: 24px;
            height: 24px;
        }

        .google-icon {
            background: url(https://upload.wikimedia.org/wikipedia/commons/5/53/Google_%22G%22_Logo.svg) no-repeat center center;
            background-size: contain;
            width: 24px;
            height: 24px;
        }

        .apple-icon {
            background: url(https://upload.wikimedia.org/wikipedia/commons/f/fa/Apple_logo_black.svg) no-repeat center center;
            background-size: contain;
            width: 24px;
            height: 24px;
        }

        @media (max-width: 768px) {
            .sign-up-container {
                padding: 1.5rem;
                width: 95%;
                max-width: 400px;
            }
        }
/* ========================================================================================== */
/* =============== OTP page styling start =================== */
.otp-container {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 450px;
    width: 95%;
    text-align: center;
}

.logo {
    height: 50px;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.subtitle {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 2rem;
}

.otp-input-group {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.otp-input {
    width: 4rem;
    height: 4rem;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
    font-size: 1.5rem;
    color: #2d3748;
    text-align: center;
    outline: none;
    transition: border-color 0.2s ease;
}

.otp-input:focus {
    border-color: #805ad5;
    box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.15);
}

.verify-button {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.375rem;
    background-color: #805ad5;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.verify-button:hover {
    background-color: #6b46c1;
}

.timer {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 0.5rem;
}

.resend-code {
    font-size: 0.875rem;
    color: #805ad5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.resend-code:hover {
    color: #6b46c1;
}

@media (max-width: 768px) {
    .otp-container {
        padding: 1.5rem;
        width: 95%;
        max-width: 400px;
    }

    .otp-input {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.25rem;
    }
}
/* ===================================================================================== */
/* ====================== Reset page styling start ======================== */
.reset-container {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 450px;
    width: 95%;
    text-align: center; /* Center the content */
}
.logo {
    height: 50px;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}
.title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}
.subtitle {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 2rem;
}
.input-group {
    margin-bottom: 1.5rem;
    text-align: left; /* Re-align label to the left */
}
.input-group label {
    display: block;
    font-size: 0.875rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.input-field {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
    font-size: 1rem;
    color: #2d3748;
    outline: none;
    transition: border-color 0.2s ease;
}
.input-field:focus {
    border-color: #805ad5;
    box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.15);
}
.send-link-button {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.375rem;
    background-color: #805ad5;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}
.send-link-button:hover {
    background-color: #6b46c1;
}

@media (max-width: 768px) {
    .reset-container {
        padding: 1.5rem;
        width: 95%;
        max-width: 400px;
    }
}
/* =============================================================================== */
/* =================== STAY listing page styling start ====================== */
.search-section {
    background-color:#fffefe;
    padding: 20px;
    border-radius: 8px;
    max-width: 100%;
  }

  .search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
  }

  .form-group {
    flex: 1 1 200px;
    position: relative;
  }

  .form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
  }

  .input-with-icon {
    width: 100%;
    padding: 8px 8px 8px 30px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .form-icon {
    position: absolute;
    left: 8px;
    top: 33px;
    font-size: 18px;
    color: #888;
  }

  .search-btn {
    display: flex;
    align-items: center;
  }

  .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    background-color: #5a00c2;
    color: white;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
  }

  .btn i {
    margin-right: 5px;
  }

  @media (max-width: 768px) {
    .search-form {
      flex-direction: column;
      align-items: stretch;
    }

    .search-btn {
      justify-content: flex-start;
    }
  }
/* ====================================================================================================== */
/* ======================= Gallary section page styling start =========================== */
.gallery-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .gallery-img:hover {
    transform: scale(1.02);
  }

  .gallery-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }
/* ======================================================================================== */
/* ================= Guest inbox page styling start ================== */
.chat-message-area {
    height: 100vh;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #eee;
  }
  .chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
  }
  .chat-bubble {
    border-radius: 15px;
    padding: 12px 16px;
    margin-bottom: 12px;
    max-width: 70%;
  }
  .chat-left {
    background-color: #f1f1f1;
    align-self: flex-start;
  }
  .chat-right {
    background-color: #491EB8;
    color: white;
    align-self: flex-end;
  }
  .chat-input {
    border-top: 1px solid #eee;
    padding: 1rem;
  }
  .chat-header {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .chat-header img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
  }
  .text-end small {
    font-size: 12px;
  }
  .input-group .form-control {
    border-radius: 25px 0 0 25px;
  }
  .btn-send {
    border-radius: 0 25px 25px 0;
  }

/* =================================================================================================== */
/* ========================== Upcomig page styling start ============================= */
.tab-link{
    color: #0c3057;
    margin-right: 1rem;
    font-weight: 500;
    cursor: pointer;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.tab-link:hover, .tab-link.active{
    color: #663399;
    border-bottom-color: #663399;
}
.card {
    margin-bottom: 1.5rem;
    border: none;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}
.card-img-top {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    object-fit: cover;
    height: 200px;
    width: 100%;
}
.card-body {
    padding: 1rem;
}
.card-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #0c3057;
    margin-bottom: 0.75rem;
}
.card-text {
    color: #4a5568;
    font-size: 1rem;
}
.wishlist-icon {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.5rem;
    color: #e0e0e0;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}
.wishlist-icon:hover {
    color: #ff6b6b;
}
.location-text {
    font-size: 0.875rem;
    color: #7f8c8d;
    margin-bottom: 0.25rem;
}
.price-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #34495e;
}
.night-text {
    font-size: 0.875rem;
    color: #7f8c8d;
}
@media (max-width: 992px) {
    .card-title {
        font-size: 1.1rem;
    }
    .card-text {
        font-size: 0.9rem;
    }
     .location-text{
        font-size: 0.75rem;
    }
    .price-text{
        font-size: 1rem;
    }
    .night-text{
        font-size: 0.75rem;
    }
}
@media (max-width: 768px) {
    .card-img-top {
        height: 150px;
    }
    .card-body {
        padding: 1rem;
    }
}
@media (max-width: 576px) {
    .card-title {
        font-size: 1rem;
    }
    .card-text {
        font-size: 0.8rem;
    }
    .location-text{
        font-size: 0.7rem;
    }
    .price-text{
        font-size: 0.9rem;
    }
    .night-text{
        font-size: 0.7rem;
    }
}
/* ================================================================================= */
/* ==================== stay details page styling start ====================== */
  .photo-grid {
      display: flex;
      
      flex-wrap: wrap;
      gap: 10px;
    }

    .left-image-container {
      flex: 1 1 60%;
      min-width: 300px;
     
    }

    .left-image-container img {
        width: 713.85px;
        height: 446.15px;
      object-fit: cover;
      border-radius: 10px;
      Top:201px;
      Left:31px;

    }

    .right-grid {
      flex: 1 1 38%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .right-grid img {
      width: 100%;
      height: 218px;
      object-fit: cover;
      border-radius: 10px;
    }

    .photo-box {
      position: relative;
    }

    .show-btn {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: white;
      border-radius: 20px;
      padding: 5px 12px;
      font-size: 14px;
      display: flex;
      align-items: center;
      box-shadow: 0 0 5px rgba(0,0,0,0.2);
      font-weight: 500;
    }

    .show-btn .material-icons {
      font-size: 18px;
      margin-right: 5px;
    }

    @media (max-width: 768px) {
      .photo-grid {
        flex-direction: column;
      }

      .left-image-container img,
      .right-grid img {
        height: auto;
      }
    }

     /* Wrapper */
     .stay-details {
      margin-top: 40px;
      margin-bottom: 60px;
    }

    /* Title section */
    .stay-details .stay-title {
      font-size: 20px;
      font-weight: 600;
    }

    .stay-details .rating {
      font-size: 14px;
    }

    /* Host section */
    .stay-details .stay-host {
      margin-top: 20px;
      margin-bottom: 30px;
    }

    .stay-details .stay-host img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
    }

    .stay-details .message-btn {
      background-color: #6c2bd9;
      color: #fff;
      border: none;
      padding: 8px 16px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
    }

    /* About section */
    .stay-details .stay-about h6 {
      font-weight: 600;
      margin-bottom: 10px;
    }

    .stay-details .stay-about p {
      font-size: 14px;
      color: #333;
      line-height: 1.6;
    }

    /* Offers section */
    .stay-details .stay-offers h6 {
      font-weight: 600;
      margin-top: 30px;
      margin-bottom: 15px;
    }

    .stay-details .stay-features .col {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: #444;
    }

    .stay-details .stay-features i {
      font-size: 22px;
      color: #444;
    }

    /* Booking card */
    .stay-details .booking-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      padding: 24px;
    }

    .stay-details .price {
      font-size: 18px;
      font-weight: 600;
    }

    .stay-details .book-btn {
      background-color: #6c2bd9;
      color: #fff;
      font-weight: 500;
      border: none;
      border-radius: 6px;
      padding: 10px;
      font-size: 15px;
    }

    .stay-details .book-note {
      font-size: 12px;
      text-align: center;
      color: #888;
      margin-top: 8px;
    }

    @media (max-width: 768px) {
      .stay-details .booking-card {
        margin-top: 30px;
      }
    }
    /* =================================================================================================== */
    
    /* ======================================================================================================================== */
    /* ======================== HOST FLOW STYLING START ========================== */
    /* ====================== Dashboard styling start ======================= */
     .sidebar {
     position: fixed;
     top: 0;
     left: 0;
     height: 100vh; /* Full viewport height */
     z-index: 1030; /* Above content */
     overflow-y: auto;
     transition: transform 0.3s ease;
      background-color: #fff;
      border-right: 1px solid #dee2e6;
      transition: all 0.3s ease;
      line-height: 40px;
      font-weight: 400;
      font-size: 16px;
    }

    .sidebar .nav-link.active {
      background: linear-gradient(90deg, #7F52F4 0%, #491EB8 100%);
      color: #fff;
    }

    .sidebar .nav-link {
      color: #787486;
    }

    .sidebar-toggle,
    .sidebar-close {
      display: none;
    }

    .sidebar-close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      cursor: pointer;
      display: none;
    }


    .content {
      padding: 2rem;
    }

    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
      background-color: #fff;
      border-bottom: 1px solid #dee2e6;
    }

    .profile-info {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .dropdown-menu {
      right: 0;
      left: auto;
    }

    

    @media (max-width: 768px) {
      .sidebar {
        position: fixed;
        left: -250px;
        width: 250px;
        top: 0;
        background: white;
        height: 100%;
        z-index: 1100;
        transition: 0.3s;
      }

      .sidebar.active {
        left: 0;
      }

      
      .sidebar-close {
        display: block;
      }
      .sidebar-toggle {
        display: inline-block;
        background: none;
        border: none;
        font-size: 1.5rem;
      }

       .header {
        flex-direction: row;
        justify-content: space-between;
      }

      main {
        margin-left: 0;
      }

      .insights {
    flex-direction: column;
    align-items: center;
  }

      .filters {
        flex-direction: column;
        align-items: stretch;
      }

     
    }
  
    .booking-section {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.05);
      padding: 1.5rem;
      margin: 0 1rem 2rem;
    }

    .booking-section h2 {
      margin-bottom: 1rem;
    }

    .filters select, .filters input {
      padding: 0.5rem;
      border: 1px solid #ccc;
      border-radius: 8px;
    }

    .reset-btn {
      color: red;
      background: none;
      border: none;
      cursor: pointer;
      font-weight: 500;
    }

    th {
      background: #e6d6fb;
      color: #000;
      padding: 0.75rem;
      text-align: left;
      font-weight: 600;
    }

    td {
      padding: 0.75rem;
      vertical-align: middle;
    }

    .avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 0.75rem;
    }

    .guest-info {
      display: flex;
      align-items: center;
    }

    .view-btn {
      background: linear-gradient(90deg, #7F52F4 0%, #491EB8 100%);
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 8px;
      cursor: pointer;
    }

    .view-btn:hover {
      background-color: #5a35a5;
    }
 /* ====================== ADD NEW LIST STYLING START ====================== */
    .insights {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin: 0 1rem 2rem;
      justify-content: space-between;
    }
    .card {
      flex: 1;
      background: #fff;
      border-radius: 16px;
      padding: 1.5rem;
      box-shadow: 0 4px 16px rgba(0,0,0,0.05);
      text-align: center;
      min-width: 160px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: row;
    }

    .card i {
      font-size: 1.5rem;
      display: block;
      margin-right: 0.75rem;
    }

    .card h3 {
      margin: 0;
      font-size: 1.5rem;
    }

    .card p {
      margin: 0;
      color: #888;
      font-size: 0.9rem;
    }

    .booking-section {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.05);
      padding: 1.5rem;
      margin: 0 1rem 2rem;
    }

    .booking-section h2 {
      margin-bottom: 1rem;
    }

    .filters {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 1rem;
    }

    .filters select, .filters input {
      padding: 0.5rem;
      border: 1px solid #ccc;
      border-radius: 8px;
    }

    .reset-btn {
      color: red;
      background: none;
      border: none;
      cursor: pointer;
      font-weight: 500;
    }

    th {
      background: #e6d6fb;
      color: #000;
      padding: 0.75rem;
      text-align: left;
      font-weight: 600;
    }

    td {
      padding: 0.75rem;
      vertical-align: middle;
    }

    .avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 0.75rem;
    }

    .guest-info {
      display: flex;
      align-items: center;
    }

    .view-btn {
      background-color: #6f42c1;
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 8px;
      cursor: pointer;
    }

    .view-btn:hover {
      background-color: #5a35a5;
    }
    @media (max-width: 768px) {
      .sidebar {
        position: fixed;
        left: -250px;
        width: 250px;
        top: 0;
        background: white;
        height: 100%;
        z-index: 1100;
        transition: 0.3s;
      }

      .sidebar.active {
        left: 0;
      }

      .sidebar-toggle {
        display: inline-block;
        background: none;
        border: none;
        font-size: 1.5rem;
      }

      .sidebar-close {
        display: block;
      }
      
      .header {
        flex-direction: row;
        justify-content: space-between;
      }
      .insights {
        flex-direction: column;
        gap: 1rem;
      }
       
      .card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
      }
    }
    /* ======================== GUEST DETAILS STYLING START ========================= */




 @media (max-width: 768px) {
      .sidebar {
        position: fixed;
        left: -250px;
        width: 250px;
        top: 0;
        background: white;
        height: 100%;
        z-index: 1100;
        transition: 0.3s;
      }

      .sidebar.active {
        left: 0;
      }

      .sidebar-toggle {
        display: inline-block;
        background: none;
        border: none;
        font-size: 1.5rem;
      }

      .sidebar-close {
        display: block;
      }
       .header {
        flex-direction: row;
        justify-content: space-between;
      }
    }
    /* ======================= HOST INBOX STYLING START ======================= */
  .chat-message-area {
    height: 100vh;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #eee;
  }
  .chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
  }
  .chat-bubble {
    border-radius: 15px;
    padding: 12px 16px;
    margin-bottom: 12px;
    max-width: 70%;
  }
  .chat-left {
    background-color: #f1f1f1;
    align-self: flex-start;
  }
  .chat-right {
    background-color: #491EB8;
    color: white;
    align-self: flex-end;
  }
  .chat-input {
    border-top: 1px solid #eee;
    padding: 1rem;
  }
  .chat-header {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .chat-header img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
  }
  .text-end small {
    font-size: 12px;
  }
  .input-group .form-control {
    border-radius: 25px 0 0 25px;
  }
  .btn-send {
    border-radius: 0 25px 25px 0;
  }
  /* ============================= HOST PROFILE =============================== */
     .header-banner {
  background: linear-gradient(to right, #b37ce0, #7f52c1);
  padding: 20px 30px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  width: 90%;
  max-width: 900px;           /* Set a max width for large screens */
  margin: 0 auto;             /* Center horizontally */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;     /* Ensure padding doesn’t add extra width */
}


    .profile-container {
      max-width: 900px;
      margin: auto;
      background: #fff;
      border-radius: 0 0 10px 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .profile-header {
      padding: 20px 30px;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .profile-picture {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
    }

    .user-info {
      flex-grow: 1;
    }

    .user-name {
      font-size: 1.2rem;
      font-weight: 600;
    }

    .user-email {
      font-size: 0.9rem;
      color: #777;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      padding: 30px;
    }

    .input-group {
      display: flex;
      flex-direction: column;
    }

    .input-group label {
      margin-bottom: 6px;
      font-weight: 500;
    }

    .input-field {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }

    .membership-section {
      padding: 0 30px 30px 30px;
      border-top: 1px solid #eee;
    }

    .membership-title {
      font-size: 1.1rem;
      margin-top: 20px;
    }

    .active-plan {
      font-weight: 600;
      margin-top: 10px;
    }

    .plan-name {
      color: #555;
      margin-bottom: 10px;
    }

    .renew-button {
      padding: 10px 20px;
      background: linear-gradient(90deg, #7F52F4 0%, #491EB8 100%);
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    .button-group {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      padding: 20px 30px 30px 30px;
    }

    .cancel-button, .update-button {
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
    }

    .cancel-button {
      background-color: #e0e0e0;
      color: #333;
    }

    .update-button {
     background: linear-gradient(90deg, #7F52F4 0%, #491EB8 100%);
      color: white;
    }

    @media (max-width: 768px) {
      .form-grid {
        grid-template-columns: 1fr;
      }

      .profile-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
      }
    }
    /* ===================== MY BOOKINGS =================== */
    .br-container {
      background: #fff;
      border-radius: 16px;
      padding: 1.5rem;
      margin: 2rem;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    }

    .br-tabs {
      display: flex;
      gap: 2rem;
      border-bottom: 1px solid #ddd;
      margin-bottom: 1rem;
    }

    .br-tabs h5 {
      padding-bottom: 0.5rem;
      cursor: pointer;
    }

    .br-tabs h5.br-active {
      color: #6f42c1;
      border-bottom: 2px solid #6f42c1;
    }

    .br-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 1.5rem;
      
    }

    .br-filters select,
    .br-filters input {
      padding: 0.45rem 0.75rem;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 14px;
    }

    .br-reset-btn {
      border: none;
      background: none;
      color: #d9534f;
      font-weight: 600;
      cursor: pointer;
    }

    .br-table th {
      background-color: #e6d6fb;
      color: #000;
      font-weight: 600;
      font-size: 14px;
    }
    .br-table td {
      vertical-align: middle;
    }

    .br-guest-info {
      display: flex;
      align-items: center;
    }

    .br-guest-info img {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      margin-right: 10px;
    }

    .br-view-btn {
     background: linear-gradient(90deg, #7F52F4 0%, #491EB8 100%);
      color: white;
      border: none;
      padding: 6px 14px;
      border-radius: 8px;
      font-size: 14px;
    }

    .br-view-btn:hover {
      background-color: #59359f;
    }

    @media (max-width: 768px) {
      .br-filters {
        flex-direction: column;
        align-items: stretch;
      }
    }
  /* ======================= MY LISTING PAGE STYLING ======================== */

.listing-wrapper {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  max-width: 100%;
  overflow-x: auto;
}

.listing-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Filter Bar */
.listing-filter-bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.listing-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.listing-filter-btn,
.listing-add-btn {
  background-color: #f0f0f0;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}
.listing-reset-btn{
 color: red;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.listing-add-btn {
  background: linear-gradient(90deg, #7F52F4 0%, #491EB8 100%);
  color: white;
}

.listing-search-input {
  padding: 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

select {
  padding: 6px;
  border-radius: 6px;
}

/* Table */
.listing-table-wrapper {
  overflow-x: auto;
}

.listing-table {
  width: 100%;
  border-collapse: collapse;
}

.listing-table th,
.listing-table td {
  padding: 12px;
  text-align: left;
}

.listing-table thead {
  background-color: #ede4ff;
}

.listing-table tbody tr {
  border-bottom: 1px solid #eee;
}

.listing-img {
  width: 60px;
  border-radius: 8px;
}

/* Status Styles */
.listing-status.available {
  color: green;
  font-weight: 600;
}

.listing-status.booked {
  color: orange;
  font-weight: 600;
}

/* Action */
.listing-edit-btn {
  color: #6a00ff;
  text-decoration: none;
}

.listing-edit-btn:hover {
  text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .listing-filter-bar {
    flex-direction: column;
  }

  .listing-table th, .listing-table td {
    padding: 8px;
  }

  .listing-img {
    width: 45px;
  }
}




  