@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap');

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    :root {
      --icon-color:#322fc5;
    --icon-bg: #e9effe;
    --accent: #ff914d;
    --card-radius: 12px;
    --gap: 20px;
     --main-color: #1c2ac4;
    }
body {
  font-family: "Rubik", Helvetica, sans-serif;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2000;
  background: linear-gradient(rgba(14, 13, 13, 0.45), rgba(0, 0, 0, 0.25), transparent) rgb(84, 47, 229);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 80px;
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease;
}
header.scrolled {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* ===== LOGO ===== */
.logo img {
  height: 35px;
  width: auto;
}

/* ===== DESKTOP NAVIGATION ===== */
nav.desktop-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 20px;
}
nav.desktop-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 17px;
  transition: opacity 0.3s ease;
}
nav.desktop-links a:hover {
  opacity: 0.8;
}


/* ===== DROPDOWN (DESKTOP) ===== */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  cursor: pointer;
}
.dropdown-toggle i.fa-caret-down {
  transition: transform 0.3s ease;
}
.dropdown.active .fa-caret-down {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background: #5539cb;
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 2100;
  margin-top: 12px;
  width: 180px;
}
.dropdown.active .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-menu a {
  color: #fff;
  padding: 10px 18px;
  display: block;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease, padding-left 0.3s ease;
}
.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.15);
  padding-left: 22px;
}

/* ===== BUTTONS ===== */
.btn {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
}
.btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* ===== PROFILE MENU ===== */
.profile-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50px;
  padding: 4px 10px;
  gap: 8px;
  cursor: pointer;
  z-index: 2200;
  position: relative;
}
.profile-menu span {
  font-size: 18px;
  color: var(--icon-color);
}
.avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background:var(--icon-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

/* ===== SIDEBAR & OVERLAY ===== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 2500;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}
.sidebar {
  position: fixed;
  top: 0;
  right: -280px;
  width: 260px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 6px rgba(0, 0, 0, 0.2);
  transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2600;
}
.sidebar.active {
  right: 0;
}
.sidebar h2 {
  font-size: 18px;
  color: #463379;
  margin-bottom: 10px;
}
.sidebar-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-person img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #463379;
}

.sidebar-person h2 {
 font-size: 17px;
  color: #463379;
  margin: 0;
  font-weight: 600;
}

.login-btn {
  background:linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25), transparent) rgb(94, 63, 224);
  color: white;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}
.login-btn:hover {
  background: #463379;
}
.close-btn {
  align-self: flex-end;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}
.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.desktop-menu{
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.desktop-menu a{
    color: #463379;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.desktop-only{
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: -5px;
}
.desktop-only a{
    color: #463379;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  
}
  desktop-only a{
    display: none;
  }

.sidebar nav a {
  color: #463379;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

  .Desktop-post {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: white;
    text-decoration: none;
  }

/* ===== MOBILE DROPDOWN ===== */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
}
.mobile-dropdown button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: #463379;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}
.mobile-dropdown button .dropdown-label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-dropdown button i.fa-caret-down {
  transition: transform 0.3s ease;
}
.mobile-dropdown.active button i.fa-caret-down {
  transform: rotate(180deg);
}
.mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  background: #f2f2f2;
  border-radius: 6px;
  margin-top: 5px;
  opacity: 0;
}
.mobile-dropdown.active .mobile-dropdown-content {
  max-height: 200px;
  opacity: 1;
}
.mobile-dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #463379;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}
.mobile-dropdown-content a:hover {
  background: #ddd;
}


.profile-menu{
    display: none;
}
  /* Hide desktop-only section on mobile */
  @media (max-width: 768px) {
    .desktop-only {
      display: none;
    }
    .profile-menu{
    display: block;
}
  }

  /* Show desktop-only section on desktop */
  @media (min-width: 769px) {
    .desktop-only {
      display: flex;
    }
  }


/* ===== MOBILE ===== */
@media (max-width: 768px) {
  header {
    padding: 12px 15px;
    justify-content: space-between;
  }
  .logo img {
    height: 25px;
    margin-top: 6px;
  }
  nav.desktop-links {
    display: none;
  }
  .mobile-post {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: white;
    text-decoration: none;
  }
}
@media (min-width: 769px) {
  .mobile-post {
    display: none;
  }
  .sidebar nav {
    display: none;
  }
}



/* ===== BODY SPACING ===== */
main {
  margin-top: 110px;
  padding: 20px;
}



    /* ==============================
         DASHBOARD LAYOUT
         ============================== */

  .desktop-content h1{
    font-size: 20px;
    font-weight: 600;
    margin-bottom:20px ;
  }
  .container-dashboard {
    display: flex;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
  }

  /* Sidebar */
  .sidebar-dashboard {
    flex: 1 1 250px;
    max-width: 300px;
    background-color: #f3f0ff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
  }

  .profile-pic-dashbord {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
}
.profile-pic-dashbord img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

  .sidebar-dashboard h2 {
    font-size: 18px;
  }

  .sidebar-dashboard p {
    font-size: 14px;
    color: #666;
  
  }

  .sidebar-dashboard ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
  }

  .sidebar-dashboard li {
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
  }

  .sidebar-dashboard li:hover {
    background-color: #e8e0ff;
  }

  .sidebar-dashboard li.active {
    background-color:var(--icon-color);
    color: #fff;
    font-weight: 500;
  }

  .sidebar-dashboard button {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: background 0.3s;
  }

  .sidebar-dashboard button:hover {
    background-color: #eee;
  }

  /* Main */
  .main {
    flex: 3 1 600px;
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    min-height: 400px;
  }

  .content-section {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
  }

  .filter-options {
    margin: 15px 0;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
  }

  .filter-options input {
    margin-right: 5px;
  }
.content-section{
  font-size: 13px;
}
  .content-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);

  }

  /* My Activity Tabs */
  .activity-header {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
  }

  .activity-tab {
    background: #f9f9f9;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
  }

  .activity-tab.active {
    border-color: var(--icon-color);
    background: #f0f1ff;
  }

  .activity-tab h4 {
    font-size: 14px;
    margin: 5px 0;
  }

  .activity-tab span {
    display: block;
    font-weight: bold;
    color: #5c57c2;
    font-size: 16px;
  }

  /* Property Cards */
  .property-card {
    display: flex;
    gap: 15px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
  }

  .property-card:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
  }

  .property-img {
    width: 220px;
    height: 140px;
    border-radius: 10px;
    object-fit: cover;
  }

  .property-info h3 {
    margin: 0;
    font-size: 16px;
    color: #222;
    font-weight: 600;
  }

  .property-info h4 {
    margin: 2px 0;
    font-size: 15px;
    font-weight: 500;
  }

  .property-info .location {
    color: #777;
    font-size: 13px;
    margin-bottom: 4px;
  }

  .property-info .details {
    color: #555;
    font-size: 13px;
    margin-bottom: 10px;
  }

  .seller-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .seller-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 5px;
  }

  .seller-row span {
    font-weight: 500;
    font-size: 13px;
  }

  .seller-row small {
    display: block;
    color: #888;
    font-size: 11px;
    margin-left: 35px;
  }

  .contact-btn {
    background-color: var(--icon-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.3s ease;
  }
/*=====edit button add=======*/
.price-row {
  display: flex;
  align-items: center;
  gap: 230px;
}

 /* Edit icon */
    .edit-icon {
      background: none;
      border: none;
      cursor: pointer;
      color: #322fc5;
      font-size: 15px;
      transition: color 0.2s ease;
    }

    .edit-icon:hover {
      color: #0056b3;
    }

    

  /* ===Transactions Section===== */
  .transaction-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .transaction-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9f9ff;
    border: 1px solid #e0e0f0;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .transaction-item:hover {
    background: #f3f0ff;
    transform: translateY(-2px);
  }

  .transaction-info {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .transaction-info i {
    background: #6257c2;
    color: #fff;
    padding: 8px;
    border-radius: 8px;
  }

  .transaction-details h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .transaction-details .transaction-price h4{
    color: var(--icon-color);
    font-size: 15px;
    font-weight: 500;
  }

  .transaction-details small {
    color: #777;
    font-size: 12px;
  }

  .transaction-status {
    font-weight: 500;
    color: #00b386;
    font-size: 14px;
  }

/* Seller + Upgrade Section */
  .listing-timeline{
    display: flex;
    justify-content: flex-end;
  }

  .upgrade-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
  }

  /* Listing Meta Row */
  .listing-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px 15px;
    background: #faf8ff;
    width: 100%;
    max-width: 520px;
  }

  .meta-item {
    text-align: center;
  }

  .meta-item strong {
    display: block;
    font-size: 12px;
    color: #222;
    font-weight: 600;
    margin-bottom: 3px;
  }

  .meta-item p {
    font-size: 13px;
    color: #000;
    margin: 0;
    font-weight: 500;
  }

  .meta-divider {
    width: 1px;
    height: 32px;
    background: #e5d8ff;
  }

  .low {
    color: red;
    font-weight: 600;
  }
 .upgrade-btn {
    background-color: var(--icon-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 8px;
  }

.listing-img img{
  height: 180px;
}


  /* Buy & Sell Section */
  .property-card.buy-sell {
    background: #fafaff;
    border: 1px solid #e0e0f0;
    position: relative;
  }

  .action-btn {
    background-color: var(--icon-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .action-btn:hover {
    background-color: #4644b4;
  }

  /* Mobile Layout */
  .mobile-dashboard {
    display: none;
  }

  @media (max-width: 900px) {
    .container-dashboard {
      flex-direction: column;
    }
    .sidebar-dashboard, .desktop-content {
      display: none !important;
    }
    .main {
      background: none;
      padding: 0;
      box-shadow: none;
    }
    .mobile-dashboard {
      display: block !important;
    }

    .profile-header {
      border-radius: 15px;
      text-align: center;
      padding: 20px;
      margin-bottom: 5px;
    }
    .profile-header h2 {
      font-size: 20px;
      font-weight: 600;
      margin: 10px 0 5px;
    }
.profile-header p{
  font-size: 15px;
  margin: 10px 0 10px;
}
.transaction-details h4{
  font-size: 15px;
}

   
.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

    .accordion-section {
      background-color: #fff;
      border-radius: 12px;
      margin-bottom: 10px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }

    .accordion-header {
      padding: 15px;
      background-color: #e2def6;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.3s ease;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .accordion-header.active {
      background-color: #6757c2;
      color: #fff;
    }

    .accordion-header i {
      transition: transform 0.4s ease;
    }

    .accordion-header.active i {
      transform: rotate(90deg);
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transform: translateY(-5px);
      transition: all 0.5s ease;
      padding: 0 15px;
        display: none;
    }
    .accordion-content h2{
      font-size: 18px;
      margin-bottom: 10px;

    }

    .accordion-content.open {
      max-height: 2000px;
      opacity: 1;
      transform: translateY(0);
      padding: 15px;
      display: block;
      font-size: 14px;
    }

    .logout-mobile {
      width: 100%;
      padding: 12px;
      background-color: #fff;
      border: 1px solid #ccc;
      border-radius: 12px;
      cursor: pointer;
      margin-top: 10px;
      transition: background 0.3s;
      margin-bottom: 30px;
    }

    .logout-mobile:hover {
      background-color: #eee;
    }

    .property-card {
      flex-direction: column;
    }

    .property-img {
      width: 100%;
      height: 180px;
    }

    .seller-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .contact-btn {
      width: 100%;
    }

    /* make transaction item mobile-friendly */
    .transaction-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .transaction-status {
      align-self: flex-end;
    }

    .action-btn {
      width: 100%;
      margin-top: 10px;
    }
  }



  /* Profile Edit Popup */
.profile-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.profile-popup {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  animation: fadeIn 0.3s ease;
}

.profile-popup h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #322fc5;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.popup-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.cancel-btn,
.save-btn {
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
}

.cancel-btn {
  background: #ddd;
}

.save-btn {
  background: var(--icon-color);
  color: #fff;
}

.edit-profile-btn {
  margin-top: 10px;
  background: var(--icon-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 30px;
  cursor: pointer;
  font-size: 13px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ==============================
   EDIT LISTING POPUP
   ============================== */
.listing-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.listing-popup {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  animation: fadeIn 0.3s ease;
}

.listing-popup h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--icon-color);
}

.save-listing-btn,
.cancel-listing-btn {
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
}

.save-listing-btn {
  background: var(--icon-color);
  color: #fff;
}

.cancel-listing-btn {
  background: #ddd;
}




    /* Popup overlay */
    .popup-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    /* Popup form */
    .popup-form {
      position: relative;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      width: 90%;
      max-width: 750px;
      max-height: 90vh;
      overflow-y: auto;
      padding: 30px 25px;
      animation: fadeIn 0.3s ease-in-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }

    /* Close button */
    .close-btn {
      position: sticky;
      top: 0;
      float: right;
      background: #f1f1f1;
      border: none;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      font-size: 18px;
      line-height: 30px;
      text-align: center;
      color: #333;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .close-btn:hover {
      background: #ddd;
      transform: rotate(90deg);
    }

    h2 {
      text-align: center;
      margin-bottom: 15px;
      color: #333;
    }

    label {
      display: block;
      /* margin-top: 12px; */
      font-weight: 600;
      color: #333;
    }

    input[type="text"],
    input[type="number"],
    textarea {
      width: 100%;
      padding: 8px 10px;
      margin-top: 6px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }

    textarea {
      resize: vertical;
    }

    .btn-group, .checkbox-group {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 8px;
    }

    .btn-group button,
    .checkbox-group label {
      border: 1px solid #ccc;
      border-radius: 20px;
      padding: 6px 12px;
      background: #fff;
      cursor: pointer;
      font-size: 13px;
      transition: 0.2s ease;
    }

    .btn-group button.active,
    .btn-group button:hover {
      background: #007bff;
      color: #fff;
    }

    .checkbox-group label {
      cursor: pointer;
    }

    .unit-group {
      display: flex;
      gap: 8px;
      margin-top: 6px;
    }

    .unit-group button {
      border: 1px solid #ccc;
      background: #fff;
      border-radius: 20px;
      padding: 5px 12px;
      font-size: 13px;
      cursor: pointer;
    }

    .unit-group button.active {
      background: #7b61ff;
      color: #fff;
      border-color: #7b61ff;
    }

    .submit-btn {
      display: block;
      width: 100%;
      margin-top: 20px;
      background: #007bff;
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
    }

    .submit-btn:hover {
      background: #0056b3;
    }



    /*=====.activity-content======*/
    .activity-content p{
      font-size: 15px;
      font-weight: 500;
    }















    .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.room-box {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
  background: #fafafa;
}

.room-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.room-header h4 {
  margin: 0;
}

.delete-room {
  color: red;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
}


.add-room-btn {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #81c784;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  margin-top: 10px;
}

.submit-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 15px;
  border-radius: 5px;
  cursor: pointer;
}





/*==========parking grp===============*/

.parking-group {
  margin-bottom: 1.5rem;
}

.parking-label {
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

.parking-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.parking-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.parking-btn {
  background-color: #fff;
  border: 1px solid #ccc;
  margin-top: 6px;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.parking-btn:hover {
  background-color: #e2e6ea;
}

.parking-btn.active {
  background: #ede9fe;
  border-color: #d8b4fe;
  color: #2521a8;
}

.parking-input {
  width: 80px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
