/* Agent Dashboard Styles */
@import "tailwindcss";
/* Reset and Base Styles */

:root {
    --aradi-green:#0D352F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}
.container {
    margin: auto;
}

@media (min-width: 1536px) {
    .container {
        max-width: 1290px !important;
    }
}
/* Layout Container */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: 280px;
    background-color: #ffffff;
    border-right: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
    overflow-y: auto;
}

.sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid #e9ecef;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text h2 {
    font-size: 20px;
    font-weight: 600;
    color: #2d5a27;
    margin: 0;
}

.brand-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Sidebar Sections */
.sidebar-section {
    padding: 20px 0;
    border-bottom: 1px solid #f1f3f4;
}

.section-title {
    font-size: 12px;
    font-weight: 600;
    color: #2d5a27;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 20px 16px 20px;
}

/* Navigation */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 0 25px 25px 0;
    margin-right: 20px;
}

.nav-item:hover {
    background-color: #f8f9fa;
    color: #2d5a27;
}

.footer-links a {
    color: #2e2f35 !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}
.nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Quick Actions */
.quick-actions {
    padding: 0 20px;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background-color: white;
    border: 1px solid #4a7c59;
    border-radius: 8px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.quick-action-btn:hover {
    background-color: #4a7c59;
    color: white;
}

.action-icon {
    width: 16px;
    height: 16px;
}

/* User Profile */
.sidebar-footer {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid #e9ecef;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.user-role {
    font-size: 12px;
    color: #4a7c59;
    margin: 0;
}

.user-action {
    color: #666;
    cursor: pointer;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

.main-content.full-width {
    margin-left: 0;
    width: 100%;
}

.main-header {
    background-color: white;
    border-radius: 50px;
    margin: 0;
    padding: 8px 30px;
    box-shadow: 0px 4px 10px 0px #0000001a;
    display: flex;
    align-items: center;
    position: relative;
}
.aradi_header {
    position: sticky;
    top: 20px;
    z-index: 100;
    margin-bottom: 30px;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo .brand-text h1 {
    font-size: 24px;
    font-weight: 600;
    color: #2d5a27;
    margin: 0;
}

.header-logo .brand-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Toggle Component */
.toggle-component {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 25px;
    padding: 4px;
    gap: 4px;
}

.toggle-option {
    position: relative;
    cursor: pointer;
}

.toggle-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    color: white;
    transition: all 0.3s ease;
}

.toggle-circle.orange {
    background-color: #ff6b35;
}

.toggle-circle.purple {
    background-color: #8b5cf6;
}

.toggle-option.active .toggle-circle {
    transform: scale(1.1);
}
.header-nav {
    display: flex;
    gap: 26px;
    align-items: center;
}
.nav-link {
    color: #000000de;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 11px 19px;
    border-radius: 12px;
    transition: all 0.2s ease;
    background-color: transparent;
}
#profileDropdown a {
	display: flex;
	padding: 5px 15px;
}
body:has(.profile-page) {
	background: #f8f9fa;
}
.nav-link:hover,
.nav-link.active {
    color: var(--aradi-green);
    background-color: #0D352F0a;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.notification-icon,
.message-icon {
    position: relative;
    color: #666;
    cursor: pointer;
    padding: 0px;
    transition: background-color 0.2s ease;
}

.notification-icon:hover,
.message-icon:hover {
    background-color: #f8f9fa;
}
.notify_aradi,
.notification-icon,
.message-icon {
    margin-top: 5px;
}
.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #ff0000;
    color: white;
    font-size: 9px;
    font-weight: 600;
    padding: 0;
    border-radius: 10px;
    min-width: 15px;
    text-align: center;
    width: 15px;
    height: 15px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.message-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: #333;
    color: white;
    font-size: 8px;
    font-weight: 600;
    padding: 1px 4px;
    border-radius: 8px;
    min-width: 12px;
    text-align: center;
}

.add-property-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 13px 15px;
    background-color: var(--aradi-green);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 14px;
    line-height: 18px;
}

.add-property-btn:hover {
    background-color: var(--aradi-green);
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    cursor: pointer !important;
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    padding: 0.5rem 0;
    z-index: 1000;
    display: none;
}

/* RTL support for profile dropdown */
html[dir="rtl"] .profile-dropdown {
    right: auto;
    left: 0;
}

html[dir="rtl"] .notification-dropdown {
    right: auto;
    left: 0;
}

.profile-dropdown.show {
    display: block;
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f3f4f6;
}

.dropdown-item svg {
    flex-shrink: 0;
    color: #6b7280;
}

.dropdown-item.logout {
    color: #dc2626;
}

.dropdown-item.logout:hover {
    background-color: #fee2e2;
}

.dropdown-item.logout svg {
    color: #dc2626;
}

.dropdown-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 0.5rem 0;
}

/* Mobile Burger Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}
.burger-line {
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.mobile-menu-toggle:hover .burger-line {
    background-color: var(--aradi-green);
}

/* Animate burger icon when drawer is open */
body.drawer-open .mobile-menu-toggle .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

body.drawer-open .mobile-menu-toggle .burger-line:nth-child(2) {
    opacity: 0;
}

body.drawer-open .mobile-menu-toggle .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Mobile Drawer */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background-color: white;
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-drawer.open {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 10;
}

.mobile-drawer-logo {
    display: flex;
    align-items: center;
}

.mobile-drawer-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.mobile-drawer-close:hover {
    color: var(--aradi-green);
}

.mobile-drawer-content {
    padding: 20px;
}

/* Mobile Navigation */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.mobile-nav-link {
    padding: 14px 16px;
    color: #000000de;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 12px;
    transition: all 0.2s ease;
    background-color: transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--aradi-green);
    background-color: var(--aradi-green)0a;
}

/* Mobile Actions */
.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-add-property-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 15px;
    background-color: var(--aradi-green);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 14px;
    line-height: 18px;
}

.mobile-add-property-btn:hover {
    background-color: var(--aradi-green);
}

.mobile-action-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 12px 0;
}

.mobile-action-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.mobile-action-icon:hover {
    background-color: #f8f9fa;
}

.notification-icon-mobile {
    position: relative;
}

/* Mobile Profile Section */
.mobile-profile-section {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    margin-top: 20px;
}

.mobile-profile-header {
    cursor: pointer !important;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f3f4;
}

.mobile-profile-header:hover,
.mobile-profile-header:hover .mobile-profile-avatar {
    cursor: pointer !important;
}

.mobile-profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer !important;
    pointer-events: auto;
}

.mobile-profile-info {
    flex: 1;
}

.mobile-profile-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.mobile-profile-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-profile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.mobile-profile-link:hover {
    background-color: #f3f4f6;
}

.mobile-profile-link.logout {
    color: #dc2626;
}

.mobile-profile-link.logout:hover {
    background-color: #fee2e2;
}

.mobile-profile-link svg {
    flex-shrink: 0;
    color: #6b7280;
}

.mobile-profile-link.logout svg {
    color: #dc2626;
}

/* Prevent body scroll when drawer is open */
body.drawer-open {
    overflow: hidden;
}

/* Page Content */
.page-content {
    flex: 1;
    padding: 0 24px 24px;
    background-color: #f8f9fa;
    margin-top: 20px;
}

/* Dashboard Styles */
.dashboard-content {
    max-width: 1411px;
    margin: 0 auto;
}

/* Summary Cards */
.summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.summary-card {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-info {
    flex: 1;
}

.card-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.card-number {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.card-change {
    font-size: 14px;
    font-weight: 600;
}

.card-change.positive {
    color: #28a745;
}

.card-change.negative {
    color: #dc3545;
}

.card-icon {
    color: #2d5a27;
    opacity: 0.8;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 30px;
}
.dashboard-left-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.dashboard-right-column {
    display: flex;
    flex-direction: column;
}

/* Dashboard Panels */
.dashboard-panel {
    background-color: white;
    border-radius: 12px;
    padding: 29px 24px 24px;
    border: 1px solid #dae7e3;
    box-shadow: 0px 1px 2px 0px #ffffff;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.panel-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.view-all-link {
    color: #00422e;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}
.dashboard-panel .panel-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* Recent Listings */
.listing-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 17px;
    border: 1px solid #dae7e3;
    background: linear-gradient(105.22deg, #ffffff 0%, #f9fbfa 100%);
    border-radius: 12px;
}
.active-btn {
    background: var(--aradi-green)0a;
    border-radius: 50px;
    padding: 3px 11px;
    color: var(--aradi-green);
    font-size: 12px;
    font-weight: 500;
}
.pending-btn {
    background: var(--aradi-green)0a;
    border-radius: 50px;
    padding: 3px 11px;
    color: #e46a00;
    font-size: 12px;
    font-weight: 500;
}

.listing-icon {
    color: #2d5a27;
    flex-shrink: 0;
}

.listing-info {
    flex: 1;
}

.listing-title {
    font-size: 16px;
    font-weight: 700;
    color: #000000DE;
    margin-bottom: 6px;
    margin-top: 0;
    line-height: 1.4;
}
.listing-details,
.listing-views {
    font-size: 14px;
    color: #737373;
    margin-bottom: 0px;
    gap: 4px;
    display: flex;
    align-items: center;
    font-weight: 400;
    line-height: 1.5;
}
.listing-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.listing-price {
    font-size: 14px;
    color: #737373;
    margin-bottom: 0px;
    gap: 4px;
    font-weight: 400;
    line-height: 1.5;
}

.view-btn {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #666;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-btn:hover {
    background-color: #2d5a27;
    color: white;
    border-color: #2d5a27;
}

/* Appointments */
.appointment-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f3f4;
}

.appointment-item:last-child {
    border-bottom: none;
}

.appointment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.appointment-info {
    flex: 1;
}

.client-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.appointment-time {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.property-name {
    font-size: 12px;
    color: #2d5a27;
}

.appointment-property {
    width: 60px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appointment-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.message-btn,
.call-btn {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.message-btn {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #666;
}

.call-btn {
    background-color: #2d5a27;
    border: 1px solid #2d5a27;
    color: white;
}

/* Quick Actions Panel */
.quick-actions-panel {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #dae7e3;
    box-shadow: 0px 1px 2px 0px #ffffff;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 506px;
}

.quick-action-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background-color: #fafafa;
    border: 1px solid #edf3f1;
    border-radius: 10px;
    text-decoration: none;
    color: #737373;
    transition: all 0.2s ease;
    min-height: 100px;
    flex-direction: column;
    font-size: 12px;
    font-weight: 500;
}
.aradi_flex {
    display: flex;
    align-items: center;
    gap: 12px;
}
.quick-action-card:hover {
    border-color: #00422e;
}

.quick-action-card.primary {
    background-color: #00422e;
    color: white;
    border-color: #00422e;
}

.action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background-color: #00422e1a;
    flex-shrink: 0;
}

.quick-action-card.primary .action-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.quick-action-card .action-icon svg {
    color: #2d5a27;
    width: 16px;
}
.quick-action-card.primary .action-icon svg {
    color: white;
}

.action-content h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #000000de;
}

.quick-action-card.primary p {
    font-size: 12px;
}

.quick-action-card.primary .action-content h4 {
    color: #fafafa;
}

.action-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.quick-action-card.primary .action-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.main-footer {
    background-color: white;
    padding: 38px 12px 25px;
    margin-top: auto;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 128px;
}
.footer-section-ul {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 1fr 1fr;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .brand-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2d5a27;
    margin: 0;
}

.footer-logo .brand-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}
.footer-description {
    color: #58595d;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    max-width: 280px;
}
.footer-title {
    font-size: 13px;
    font-weight: 700;
    color: #2e2f35;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 18px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-logo a img {
    height: 50px !important;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #2d5a27;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item svg {
    color: #666;
    flex-shrink: 0;
}

.contact-item a {
    color: #2e2f35 !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.contact-item a:hover {
    color: #2d5a27;
}

.footer-bottom {
    border-top: 1px solid #e6e6e7;
    padding-top: 25px;
    margin-top: 36px;
    text-align: center;
}

.footer-bottom p {
    color: #58595d;
    font-size: 14px;
    margin: 0;
}

/* Properties Page Styles */
.properties-page {
    max-width: 1411px;
    margin: 0 auto;
    padding: 16px 0px 10px;
}

/* Search and Filter Bar */
.search-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 16px;
    background: white;
    padding: 17px;
    border-radius: 12px;
}
.search-section {
    flex: 1;
}

.search-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 16px;
    color: #666;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    background-color: white;
    transition: border-color 0.2s ease;
}
.filter-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.filter-dropdown {
    position: relative;
}

.filter-select {
    cursor: pointer;
    appearance: none;
    min-width: 150px;
    width: 100%;
    border: 1px solid #edf3f1;
    border-radius: 10px;
    font-size: 14px;
    color: #737373;
    background-color: #fafafa;
    box-shadow: none;
    font-weight: 400;
    height: 40px;
    padding: 8px;
}

.dropdown-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
}

.more-filters-btn {
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    border: 1px solid #edf3f1;
    border-radius: 10px;
    font-size: 14px;
    color: #737373;
    background-color: #fafafa;
    box-shadow: none;
    font-weight: 400;
    height: 40px;
}

/* Summary Statistics */
.summary-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background-color: white;
    box-shadow: 0px 1px 2px 0px #0000000d;
    border-radius: 12px;
    padding: 17px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}
.stat-icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f6f6f6;
    border-radius: 50px;
    color: #2d5a27;
    border: 2px solid white;
    outline: 1px solid #f6f6f6;
    box-shadow: 0px 0px 1.96px 0px #00000026;
}

.stat-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background-color: #ff6b9d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.badge-text {
    color: white;
    font-size: 10px;
    font-weight: 600;
}

.badge-avatar {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid white;
}

.stat-content h3 {
    font-size: 14px;
    color: #437062;
    margin: 0;
    font-weight: 400;
}
.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #000000de;
    margin: 0;
}

/* Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.property-card {
    background-color: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    width: 100%;
    cursor: pointer;
}

.property-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.property-badge.approved {
    background-color: #10b981;
}

.property-profile {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e9ecef;
    position: relative;
}

.profile-letter {
    font-size: 12px;
    font-weight: 600;
    color: #8b5cf6;
}

.profile-img {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid white;
}

.property-content {
    padding: 24px;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.property-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.star-icon {
    color: #fbbf24;
}

.property-type {
    font-size: 12px;
    color: #666;
    background-color: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
}

.property-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin: 0 0 12px 0;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.property-location svg {
    color: #666;
}

.property-price {
    font-size: 16px;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 16px;
}

.property-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #666;
}

.spec-item svg {
    color: #666;
}

.property-actions {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(3, 1fr);
}
.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    background-color: white;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}
/* Property Detail Page Styles */
.property-detail-page {
    max-width: 1411px;
    margin: 0 auto;
    padding: 24px;
}

.property-detail-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Property Header */
.property-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.property-title-section {
    flex: 1;
}

.property-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.2;
}
.aradi_property_detail_page .property-title {
    font-size: 24px;
    font-weight: 700;
    color: #00291d;
    margin: 0;
}
.property-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 16px;
}

.property-location svg {
    color: #666;
}

.property-status {
    display: flex;
    align-items: center;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.status-badge.approved {
    background-color: #10b981;
    color: white;
}

/* Property Image Section */
.property-image-section {
    width: 100%;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.main-property-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

/* Price Section */
.price-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.property-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5a27;
    margin: 0;
}

/* Section Styling */
.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.profile-overlay {
    display: flex;
    gap: -8px;
}

.profile-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: white;
    border: 2px solid white;
    margin-left: -8px;
}

.profile-circle.orange {
    background-color: #ff6b35;
}

.profile-circle.purple {
    background-color: #8b5cf6;
}

/* Property Description */
.property-description-section,
.property-specifications,
.amenities-section,
.location-section,
.property-conditions {
    background-color: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #dae7e3;
    margin-bottom: 24px;
    box-shadow: 0px 1px 2px 0px #ffffff;
}

.description-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Property Specifications */
.property-specifications {
    padding: 19px 19px 24px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.spec-value {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

/* Amenities Section */
.amenities-section {
    padding: 20px 20px 27px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
}

.amenity-item svg {
    color: #2d5a27;
    flex-shrink: 0;
}

.see-all-details {
    color: var(--aradi-green);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    text-decoration: underline;
}

.see-all-details:hover {
    text-decoration: underline;
}

/* Location Section */
.location-section {
    padding: 20px 20px 35px;
}

.map-container {
    position: relative;
    height: 200px;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #666;
}

.map-placeholder svg {
    color: #666;
}

.view-map-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 8px 16px;
    background-color: #2d5a27;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

/* Property Conditions */
.property-conditions {
    padding: 24px 25px 25px;
}

.condition-text {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Right Sidebar */
.property-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-panel {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px 0px #0000001a;
}

.panel-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000de;
    margin: 0;
}

/* Regulatory Information */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.info-value {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

/* Performance Stats */

.performance-stats {
    display: flex;
    flex-direction: column;
    gap: 19px;
    padding: 0 25px 27px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 14px;
    color: #00291d;
    font-weight: 400;
    display: flex;
    gap: 9px;
    align-content: center;
    line-height: 16px;
}

.stat-value {
    font-size: 18px;
    color: #000000de;
    font-weight: 700;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 24px 24px;
}
.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background-color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    justify-content: flex-start;
}

/* Toggle Section */
.toggle-section {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.toggle-component {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 25px;
    padding: 4px;
    gap: 4px;
}

.toggle-option {
    position: relative;
    cursor: pointer;
}

.toggle-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: white;
    transition: all 0.3s ease;
}

.toggle-circle.orange {
    background-color: #ff6b35;
}

.toggle-circle.purple {
    background-color: #8b5cf6;
}

.toggle-option.active .toggle-circle {
    transform: scale(1.1);
}

.toggle-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Analytics Dashboard Styles */

/* KPI Section */
.kpi-section {
    margin-bottom: 30px;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 32px;
    row-gap: 28px;
}

.kpi-card {
    background-color: white;
    border: 1px solid #dce0ea;
    border-radius: 14px;
    padding: 60px 25px;
    display: flex;
    align-items: center;
    gap: 39px;
    position: relative;
    transition: all 0.2s ease;
    box-shadow: 0px 4px 16px 0px #0000001a;
}

.kpi-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f6f6f6;
    border-radius: 50%;
    color: #2d5a27;
    box-shadow: 0px 0px 3.2px 0px #00000026;
    border: 2px solid white;
}
.analytics-page {
    padding-top: 10px;
}
.kpi-content {
    flex: 1;
}

.kpi-title {
    font-size: 24px;
    color: #737373;
    margin: 0 0 11px 0;
    font-weight: 400;
    line-height: 1;
}

.kpi-value {
    font-size: 30px;
    font-weight: 600;
    color: #000000de;
    margin: 0;
}

/* Trends & Insights Section */
.trends-section {
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
    background: white;
    box-shadow: 0px 4px 16px 0px #0000001a;
    padding: 28px;
    border-radius: 9px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 24px 0;
}
.trends-section .section-title {
    display: flex;
    gap: 9px;
    text-transform: capitalize;
    color: #020817;
    font-size: 20px;
    line-height: 27px;
    font-weight: 600;
    align-items: center;
    margin-bottom: 27px;
}
.charts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.chart-card {
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 9px;
    padding: 15px;
}

.chart-container {
    height: 200px;
    display: flex;
    align-items: end;
}

/* Boost Performance Section */
.boost-section {
    margin-bottom: 30px;
}

.boost-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.boost-card {
	background-color: white;
	border: 1px solid #e9ecef;
	border-radius: 6px;
	padding: 12.5px 11px;
	box-shadow: 0px 4px 6px 0px #00000014;
}
.boost-header {
    margin-bottom: 10px;
    border-bottom: 1px solid #e9eaed;
    padding: 16px 20px;
}

.boost-title {
    font-size: 20px;
    font-weight: 600;
    color: #202a3c;
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.boost-title span {
    font-size: 14px;
    font-weight: 500;
    color: #000000de;
    margin: 0;
}
.boost-content {
	padding: 0;
}
.boost-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.boost-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--aradi-green)0d;
    border-radius: 50px;
    border: 1px solid white;
    box-shadow: 0px 0px 1.58px 0px #00000026;
}
.boost-info {
    flex: 1;
}

.boost-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

.boost-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.boost-metric {
    display: flex;
    align-items: center;
    gap: 6px;
}

.metric-icon {
    background: #f4f5f7;
    border-radius: 7px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--aradi-green);
}

.boost-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}

.total-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}   

.total-value {
    font-size: 20px;
    font-weight: 700;
    color: #2d5a27;
}

.performance-breakdown {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 20px 20px 25px;
}
.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9eaed;
}

.breakdown-label {
    font-size: 14px;
    color: #000000de;
    font-weight: 500;
}
.breakdown-value {
    font-size: 14px;
    color: #000000de;
    font-weight: 500;
}

/* Property Card Styles */
.property-card {
    background-color: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.property-main {
    display: flex;
    padding: 20px;
    gap: 20px;
}

.property-image {
    flex: 0 0 40%;
    border-radius: 6px;
    overflow: hidden;
}

.property-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-price {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.property-specs {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.spec-icon {
    color: #666;
}

.property-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 14px;
}

.location-icon {
    color: #666;
}

.agent-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-top: 1px solid #e0e0e0;
    background-color: #f8f9fa;
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.agent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.agent-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.agent-listing {
    font-size: 12px;
    color: #666;
}

.contact-actions {
    display: flex;
    gap: 8px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: white;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

/* Property Card Styles */
.property-card {
    background-color: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.property-main {
    display: flex;
    padding: 10px 16px 20px;
    gap: 10px;
}

.property-image {
    flex: 0 0 122px;
    border-radius: 5.55px;
    overflow: hidden;
    height: 122px;
    object-fit: cover;
}

.property-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-price {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.property-specs {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.spec-icon {
    color: #666;
}

.property-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 14px;
}

.location-icon {
    color: #666;
}

.agent-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-top: 1px solid #f3f3f3;
    background: white;
    gap: 12px;
}
.agent-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.agent-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.agent-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.agent-name {
    font-size: 14px;
    font-weight: 600;
    color: #000000de;
}

.agent-listing {
    font-size: 12px;
    color: #737373;
}

.contact-actions {
    display: flex;
    gap: 7px;
}

.contact-btn {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #edf3f1;
    border-radius: 10px;
    background-color: #fafafa;
    color: var(--aradi-green);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 6.67px;
    min-width: 76px;
    justify-content: center;
}

.approve-btn.contact-btn {
    border: 1px solid #00422e;
    background-color: #00422e;
    color: #fafafa;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

/* Property Create Form Styles */
.property-create-page {
    min-height: 100vh;
    background-color: #f8f9fa;
    padding: 0 0 26px;
}

.property-create-page .form-container {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #dae7e3;
    box-shadow: 0px 1px 2px 0px #ffffff;
}
.property-create-page .form-header {
    text-align: left;
    padding-bottom: 24px;
}

.property-create-page .page-title {
    font-size: 24px;
    font-weight: 700;
    color: #00291d;
    margin: 0;
    line-height: 36px;
}
.step-indicator {
    font-size: 16px;
    font-weight: 400;
    color: #437062;
    margin: 0;
}
.property-create-page .section-title {
    font-size: 24px;
    font-weight: 600;
    color: #000000de;
    margin: 0 0 24px 0;
    text-transform: inherit;
}

.property-form {
    width: 100%;
}

.property-create-page .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.property-create-page .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.property-create-page .form-input,
.property-create-page .form-select,
.property-create-page .form-textarea,
.property-create-page .spec-select {
    padding: 9px 12px;
    border: 1px solid #edf3f1;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s ease;
    background-color: #fafafa;
    height: 40px;
    font-weight: 400;
    color: #000000DE;
}

.property-create-page .form-textarea {
    resize: vertical;
    min-height: 98px;
}

.property-create-page .form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid #dae7e3;
    margin-top: 0;
}

.property-create-page .cancel-btn {
    color: #00291d;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    background-color: #e1dcdc;
}

.cancel-btn:hover {
    color: #374151;
    background-color: #f3f4f6;
}

.next-step-btn {
    background-color: #374151;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 17px;
    border-radius: 10px;
    transition: all 0.2s ease;
    height: 40px;
    background: #fafafa;
    border: 1px solid #edf3f1;
    opacity: 50%;
}

.property-create-page .next-step-btn {
    color: #fafafa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.2s ease;
    height: 40px;
    background: #000000de;
    border: 1px solid #000000de;
}
/* Location Modal Styles */
.location-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
}

.location-modal {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.modal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

/* Search Overlay */
.search-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 20;
}

.search-input-container {
    position: relative;
    max-width: 100%;
    margin: 0;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
}

.search-input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 3rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

/* Map Section */
.map-section {
    flex: 1;
    margin-bottom: 0;
}

.map-container {
    position: relative;
    height: auto;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 8px;
    overflow: hidden;
}

.map-background {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #d1d5db 1px, transparent 1px),
        linear-gradient(180deg, #d1d5db 1px, transparent 1px);
    background-size: 20px 20px;
}

/* District Labels */
.district-label {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.nazal-sheba {
    top: 15%;
    left: 10%;
}

.silicon-oasis {
    top: 35%;
    right: 20%;
}

.international-city {
    top: 10%;
    right: 15%;
}

.falcon-city {
    bottom: 25%;
    left: 15%;
}

.dubai-land {
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
}

.academic-city {
    bottom: 10%;
    right: 20%;
}

/* Map Markers */
.map-marker {
    position: absolute;
}

.green-pin {
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    color: #2d5a27;
    z-index: 10;
}

.q-marker {
    top: 20%;
    left: 55%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.q-bubble {
    background: #ec4899;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.q-text {
    color: white;
}

.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.prev-btn {
    background-color: #f3f4f6;
    color: #374151;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.prev-btn:hover {
    background-color: #e5e7eb;
}

.next-btn {
    background-color: #374151;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.next-btn:hover {
    background-color: #1f2937;
    transform: translateY(-1px);
}

/* Step 3 - Details & Attributes Styles */
.property-create-page .number-input-container {
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 9px 17px;
    border: 1px solid #edf3f1;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s ease;
    background-color: #fafafa;
    height: 40px;
    font-weight: 400;
    color: #737373;
    justify-content: center;
    gap: 8px;
    width: 126px;
}
.property-create-page .number-btn {
    background: #f3f4f6;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    transition: all 0.2s ease;
    width: 19px;
    height: 19px;
    border: 1px solid #0000004d;
    border-radius: 50px;
    min-width: 19px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-create-page .number-input {
    border: none;
    padding: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    width: 45px;
    background: transparent;
    color: #000000;
    appearance: none;
}
/* Hide arrows in Chrome, Safari, Edge, Opera */
.property-create-page .number-input::-webkit-inner-spin-button,
.property-create-page .number-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide arrows in Firefox */
.property-create-page .number-input {
    -moz-appearance: textfield;
}

.amenities-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.amenity-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.amenity-checkbox:hover {
    border-color: #2d5a27;
    background-color: #f9fafb;
}

.amenity-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 0.75rem;
    position: relative;
    transition: all 0.2s ease;
}

.amenity-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: #2d5a27;
    border-color: #2d5a27;
}

.amenity-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.amenity-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

/* Image Upload Styles */
.image-upload-section {
    margin: 2rem 0;
}

.upload-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #f9fafb;
}

.upload-area:hover {
    border-color: #2d5a27;
    background-color: #f0fdf4;
}

.upload-icon {
    color: #6b7280;
    margin-bottom: 1rem;
}

.upload-text {
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    margin: 0 0 0.5rem 0;
}

.upload-formats {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Featured Listing Styles */
.featured-listing-section {
    margin: 2rem 0;
    padding: 1.5rem;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    background-color: #f9fafb;
}

.featured-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.featured-content {
    margin-left: 0.75rem;
}

.featured-text {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    display: block;
    margin-bottom: 0.5rem;
}

.featured-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Updated Step 3 Styles to Match Image */
.conditions-section {
    margin-bottom: 24px;
}
.property-create-page .conditions-title,
.property-create-page .spec-label,
.property-create-page .amenities-title,
.property-create-page .upload-title {
    font-size: 14px;
    font-weight: 600;
    color: #00291d;
    margin-bottom: 13px;
}

.notes-section {
    margin-bottom: 2.5rem;
}

.notes-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.notes-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    flex-shrink: 0;
    width: 120px;
    padding-top: 1rem;
}

.notes-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    background-color: #f9fafb;
    color: #6b7280;
    resize: vertical;
    min-height: 100px;
}
#upload-prompt {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.notes-textarea::placeholder {
    color: #9ca3af;
}

.conditions-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    background-color: #f9fafb;
    color: #6b7280;
    resize: vertical;
    min-height: 100px;
}
.specifications-section {
    margin-bottom: 24px;
}

.property-create-page .specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.6fr 1.6fr;
    gap: 16px;
    align-items: center;
    max-width: 800px;
}
.property-create-page .amenities-section {
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    margin-bottom: 45px;
}
.spec-group {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.spec-select {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    background-color: white;
    transition: all 0.2s ease;
}

.amenities-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    transition: all 0.2s ease;
    background-color: white;
}

.amenity-item input[type="checkbox"] {
    display: block;
}

.amenity-icon {
    color: #6b7280;
    transition: color 0.2s ease;
}

.amenity-item input[type="checkbox"]:checked + .amenity-icon {
    color: #2d5a27;
}

.amenity-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.feature-listing-section {
    margin: 24px 0 30px;
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    color: #2d5a27;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 0.25rem 0;
}

.feature-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.feature-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.feature-checkbox input[type="checkbox"] {
    display: none;
}

.feature-checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
}

.feature-checkbox input[type="checkbox"]:checked + .feature-checkmark {
    background-color: #2d5a27;
    border-color: #2d5a27;
}

.feature-checkbox input[type="checkbox"]:checked + .feature-checkmark::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.feature-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.property-create-page .preview-btn {
    color: #fafafa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.2s ease;
    height: 40px;
    background: #000000de;
    border: 1px solid #000000de;
}
/* Property Preview Page Styles */
.property-preview-page {
    min-height: 100vh;
    background-color: #f8f9fa;
    padding: 0;
}

.property-header-section {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}
.aradi_header_menu {
    display: flex;
    align-items: center;
    gap: 37px;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-title-section {
    flex: 1;
}

.property-title {
    font-size: 14px;
    font-weight: 600;
    color: #000000de;
    margin: 0 0 14px 0;
}
.property-location {
    display: flex;
    align-items: center;
    gap: 11.48px;
    color: #000000de;
    font-size: 12px;
}

.header-actions {
    display: flex;
    gap: 37px;
    align-items: center;
}
.preview-mode-label {
	color: #737373;
	font-size: 12px;
	font-weight: 600;
	margin-right: 0;
	white-space: nowrap;
}
.property-header .action-btn.edit-property {
	border: 1px solid #000000DE;
	border-radius: 8px;
	padding: 13px 12px;
	font-size: 12px;
	font-weight: 600;
	color: #000000DE;
}
.header-actions > div {
    display: flex;
    align-content: center;
    gap: 18px;
}
.action-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #d1d5db;
    transition: all 0.2s ease;
    cursor: pointer;
    background: white;
    color: #374151;
}

.edit-property {
    background: white;
    color: #374151;
    border-color: #d1d5db;
}

.edit-property:hover {
    background-color: #f9fafb;
}

.publish {
    background: #374151;
    color: white;
    border-color: #374151;
}

.publish:hover {
    background-color: #1f2937;
}

.preview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

.preview-main-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.property-image-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 0;
    overflow: hidden;
}

.property-image-banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-section {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
}

.boost-text {
    font-size: 0.875rem;
    color: #6b7280;
}

.content-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    position: relative;
}

.properties-details-card {
    position: relative;
}

.agent-avatar-overlay {
    position: absolute;
    top: -15px;
    left: -15px;
    z-index: 10;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.avatar-letter {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 1rem 0;
}

.description-text {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: #6b7280;
    font-size: 0.875rem;
}

.detail-value {
    color: #374151;
    font-weight: 500;
    font-size: 0.875rem;
}

.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.amenity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 7px 12px 7px 7px;
    border-radius: 0;
    color: #737373;
    font-size: 14px;
    font-weight: 400;
    border: none;
    border-right: 1px solid #eeeeee;
    background: transparent;
}

.see-all-details {
    text-align: right;
}

.details-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.details-link:hover {
    text-decoration: underline;
}

.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 27px;
}

.map-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #2d5a27;
    z-index: 10;
}

.view-map-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #374151;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    z-index: 10;
}

.condition-text {
    color: #000000de;
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.preview-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 1.5rem 0;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 12px 22px;
}
.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-bottom: none;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: #6b7280;
    font-size: 0.875rem;
}

.info-value {
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Hide desktop navigation and actions */
    .header-nav {
        display: none;
    }

    .aradi_header_menu {
        display: none;
    }

    /* Show burger menu */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Show mobile drawer */
    .mobile-drawer,
    .mobile-drawer-overlay {
        display: block;
    }

    /* Adjust header content for mobile */
    .header-content {
        justify-content: space-between;
    }

    /* Adjust header padding on mobile */
    .main-header {
        padding: 8px 20px;
        margin: 0 15px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-left-column,
    .dashboard-right-column {
        gap: 16px;
    }

    .summary-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .page-content {
        padding: 16px;
    }

    .summary-card {
        padding: 16px;
    }

    .dashboard-panel {
        padding: 16px;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr;
    }

    .summary-stats {
        grid-template-columns: 1fr;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .search-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-section {
        justify-content: space-between;
    }

    .property-detail-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .property-sidebar {
        position: static;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .kpi-grid {
        grid-template-columns: 1fr;
    }

    .charts-grid {
        grid-template-columns: 1fr;
    }

    .boost-grid {
        grid-template-columns: 1fr;
    }

    .property-main {
        flex-direction: column;
        gap: 16px;
    }

    .property-image {
        flex: none;
        width: 100%;
    }

    .property-specs {
        flex-direction: column;
        gap: 8px;
    }

    .agent-section {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .contact-actions {
        justify-content: center;
    }

    /* Property Form Responsive */
    .form-container {
        margin: 1rem;
        padding: 1.5rem;
        max-width: calc(100% - 2rem);
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .amenities-row {
        flex-direction: column;
        gap: 1rem;
    }

    /* Step 2 & 3 Responsive */

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .upload-area {
        padding: 2rem 1rem;
    }
    /* Step 3 Responsive Updates */
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .amenities-row {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .feature-checkbox {
        align-self: flex-end;
    }

    /* Location Modal Responsive */
    .location-modal-overlay {
        padding: 1rem;
    }

    .location-modal {
        max-height: 95vh;
    }

    .modal-header {
        padding: 1rem 1.5rem;
    }

    .modal-content {
        padding: 1.5rem;
    }
    .search-overlay {
        top: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
    }

    .search-input-container {
        max-width: 100%;
    }

    .district-label {
        font-size: 0.625rem;
        padding: 0.125rem 0.25rem;
    }

    .q-bubble {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .profile-avatar {
        width: 28px;
        height: 28px;
    }

    .modal-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .prev-btn,
    .next-btn {
        width: 100%;
        text-align: center;
    }

    /* Property Preview Responsive */
    .header-content {
        gap: 1.5rem;
        align-items: center;
    }

    .header-actions {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }

    .preview-mode-label {
        text-align: center;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .action-btn {
        width: 100%;
        text-align: center;
    }

    .preview-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .banner-image {
        height: 200px;
    }

    .agent-avatar-overlay {
        top: -10px;
        left: -10px;
    }

    .avatar-circle {
        width: 40px;
        height: 40px;
    }

    .avatar-letter {
        font-size: 1rem;
    }
}

/* Bookings Page Styles */
.bookings-page {
	min-height: 100vh;
	background-color: #f8f9fa;
	padding: 12px 0 70px;
}

/* Calendar Section */
.calendar-section {
    display: flex;
    flex-direction: column;
}

.calendar-card {
	background-color: white;
	border-radius: 12px;
	padding: 30px 25px 65px;
	border: 1px solid #dae7e3;
	box-shadow: 0px 1px 2px 0px #ffffff;
}
.calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}
.calendar-nav-btn {
	background: none;
	border: none;
	color: #737373;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 6px;
	transition: all 0.2s ease;
}
.calendar-nav-btn svg {
	color: #737373;
	width: 30px;
	height: 30px;
}
.calendar-month {
	font-size: 21px;
	font-weight: 600;
	color: #000000DE;
	margin: 0;
}

.calendar-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.day-header {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    padding: 0.5rem;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-date {
	position: relative;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 500;
	color: #374151;
	cursor: pointer;
	transition: all 0.2s ease;
	border-radius: 50%;
	width: 57px;
}

.calendar-date:hover {
    background-color: #f3f4f6;
}

.calendar-date.other-month {
    color: #d1d5db;
}

.calendar-date.pending {
    position: relative;
}

.calendar-date.approved {
    background-color: #00422e;
    color: white;
}

.calendar-date.selected {
	background-color: #00422e;
	color: white;
	box-shadow: 0 0 0 2px #00422e;
}

.status-dot {
    position: absolute;
    bottom: 2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-dot.pending {
    background-color: #fbbf24; /* Yellow color for pending bookings */
    left: calc(50% + 4px);
    transform: translateX(-50%);
}

.status-dot.approved {
    background-color: white;
    left: 50%;
    transform: translateX(-50%);
}

/* When both dots exist, adjust positioning */
.calendar-date.approved .status-dot.pending {
    left: calc(50% + 4px);
}

.calendar-date.pending:not(.approved) .status-dot.pending {
    left: 50%;
}

.profile-overlay {
    position: absolute;
    top: -5px;
    right: -5px;
    z-index: 10;
}

.profile-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.q-circle {
    background-color: #ec4899;
}

.agent-circle {
    background-color: #f59e0b;
    padding: 2px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.calendar-legend {
	display: flex;
	gap: 26px;
	padding-top: 30px;
}
.legend-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 10px;
	font-weight: 400;
}
.legend-dot {
	width: 8px;
	height: 8px;
	border-radius: 2px;
}

.legend-dot.approved {
    background-color: var(--aradi-green);
}

.legend-dot.pending {
    background-color: #E46A00;
}

/* Appointments Section */
.appointments-section {
    display: flex;
    flex-direction: column;
}

.appointments-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    height: fit-content;
}

.appointments-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 1.5rem 0;
}

.appointments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: 600px;
    overflow-y: auto;
}

.appointment-card {
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    background: white;
    transition: all 0.2s ease;
}

.appointment-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.appointment-image {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appointment-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.appointment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.property-info {
    flex: 1;
}

.property-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--aradi-green);
    margin-bottom: 12px;
}

.property-specs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.spec-item {
    font-size: 12px;
    color: #000000de;
    font-weight: 400;
}
.status-badge {
    padding: 7px 11px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    text-transform: capitalize;
}
.status-badge.awaiting {
    background-color: var(--aradi-green)0a;
    color: #e46a00;
}

.status-badge.reschedule {
    background-color: #fef3c7;
    color: #d97706;
}

.status-badge.confirmed {
    background-color: var(--aradi-green)0a;
    color: var(--aradi-green);
}

.property-details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.property-name {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #437062;
    font-size: 16px;
    margin-bottom: 0;
}
.appointment-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.profile-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.profile-property {
    font-size: 0.75rem;
    color: #6b7280;
}

.appointment-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #d1d5db;
    background: white;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

.appointment-overlays {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.overlay-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.q-overlay {
    background-color: #ec4899;
}

.c-overlay {
    background-color: #8b5cf6;
}

.a-overlay {
    background-color: #f59e0b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bookings-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .calendar-card {
        padding: 1.5rem;
    }

    .appointments-card {
        padding: 1.5rem;
    }

    .appointment-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .appointment-actions {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Messages Page Styles */
.messages-page {
    min-height: 100vh;
    background-color: white;
    overflow: hidden;
}

.messages-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    height: calc(100vh - 80px);
    overflow: hidden;
}

/* Sidebar */
.messages-sidebar {
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    background-color: white;
    height: 100%;
    overflow: hidden;
}

.messages-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #374151;
    margin: 0 0 1.5rem 0;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1.5rem 1.5rem 1.5rem;
}
.search-icon {
    color: #000000de;
    flex-shrink: 0;
}
.search-input {
    width: 100%;
    padding: 10px 10px 10px 48px;
    border: 1px solid #edf3f1;
    border-radius: 10px;
    font-size: 14px;
    color: #737373;
    background-color: #fafafa;
    box-shadow: none;
    font-weight: 400;
    height: 40px;
}

.search-input::placeholder {
    color: #737373;
}

.contacts-list {
    flex: 1;
    overflow-y: auto;
    padding: 0 0.75rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item.active .contact-avatar {
    border: 2px solid white;
}

.contact-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.contact-info {
    flex: 1;
    min-width: 0;
}

.contact-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-message {
    font-size: 0.75rem;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Chat Area */
.chat-area {
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    height: 100%;
    overflow: hidden;
}

.chat-header {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem;
    flex-shrink: 0;
}

.chat-user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar-container {
    position: relative;
    display: inline-block;
}

.chat-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.status-dot-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: #15803d;
    border: 2px solid white;
    border-radius: 50%;
    display: block;
}

.chat-user-details {
    flex: 1;
}

.chat-user-name {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-text {
    font-size: 0.75rem;
    color: #15803d;
    font-weight: 500;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #f0f2f5;
}

.message {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    max-width: 70%;
}

.message.incoming {
    align-self: flex-start;
}

.message.outgoing {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.message-bubble {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    line-height: 1.5;
}

.incoming-bubble {
    background-color: white;
    color: #374151;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.outgoing-bubble {
    background-color: #2d5a27;
    color: white;
    border-bottom-right-radius: 4px;
}

.message-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.message.outgoing .message-time {
    flex-direction: row-reverse;
}

.chat-input {
    border-top: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
    background-color: white;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.message-input-wrapper {
    position: relative;
    display: flex;
    flex: 1;
    align-items: center;
}

.message-input {
    flex: 1;
    padding: 0.75rem 1rem;
    padding-right: 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #374151;
    width: 100%;
}

.pin-btn {
    cursor: pointer;
    color: #6b7280;
    flex-shrink: 0;
}

.send-btn {
    position: absolute;
    right: 0.75rem;
    z-index: 10;
    cursor: pointer;
}

.message-input:focus {
    outline: none;
    border-color: #15803d;
}

.message-input::placeholder {
    color: #9ca3af;
}

.input-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pin-btn {
    color: #374151;
}

.send-btn {
    color: #2d5a27;
}

/* Responsive Design */
@media (max-width: 768px) {
    .messages-container {
        grid-template-columns: 1fr;
        height: auto;
    }

    .messages-sidebar {
        display: none;
    }

    .chat-header {
        padding: 1rem;
    }

    .chat-messages {
        padding: 1rem;
    }

    .message {
        max-width: 85%;
    }

    .chat-input {
        padding: 1rem;
    }
}

/* Profile Page Styles */
.profile-page {
	min-height: 80vh;
	background-color: #FAFAFA;
	padding: 20px 0 40px;
}

.profile-container {
	padding: 0;
	display: grid;
	grid-template-columns: 355px 1fr;
	gap: 18px;
	align-items: flex-start;
}

.profile-container-full {
	grid-template-columns: 1fr;
}
.profile-content {
	margin-top: 64px;
    min-height: 529px;
}
/* Sidebar */
.sidebar-title {
	font-size: 24px;
	font-weight: 700;
	color: #222222;
	margin: 0 0 27px 0;
}
.account-nav {
	display: flex;
	flex-direction: column;
	gap: 0;
	border-radius: 10px;
    overflow: hidden;
	background: white;  
}

.account-nav .nav-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 17px 19px 17px 10px;
	color: #111415;
	text-decoration: none;
	font-size: 16px;
	transition: all 0.2s ease;
	justify-content: space-between;
	margin-right: 0 !important;
	border-radius: 0;
	border-bottom: 1px solid #fafafa;
}

.account-nav .nav-item:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.account-nav .nav-item.active {
    background-color: var(--aradi-green);
    color: white;
}

.account-nav .nav-item.active svg path {
    stroke: white;
}
.account-nav .nav-item.active .avg path {
	fill: white;
    stroke: none;
}
.account-nav .nav-item.active .subs path {
	stroke: white;
	fill: white;
}

.account-nav .nav-item svg:not(.arrow-icon) {
    flex-shrink: 0;
}

.account-nav .nav-item span {
    flex: 1;
}

.arrow-icon {
    flex-shrink: 0;
    color: currentColor;
}

.account-nav .nav-item.sign-out {
    color: #FF0000;
}

.account-nav .nav-item.sign-out:hover {
    background-color: #fee2e2;
}

.account-nav .nav-item.sign-out svg {
    color: #FF0000;
}

/* Main Content */
.profile-content {
	background: white;
	border-radius: 10px;
	padding: 23px 37px 40px;
	box-shadow: 0px 2px 16px 0px #0000001A;
}

.profile-content .content-title {
    font-size:24px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 26px;
}

/* User Info Card */
.user-info-card {
	background: white;
	border-radius: 12px;
	padding: 19px 25px;
	margin-bottom: 24px;
	border: 1px solid #EAEFEF;
}
.user-avatar-section {
	display: flex;
	align-items: center;
	gap: 16px;
	padding-bottom: 19px;
	border-bottom: 1px solid #F3F3F3;
}

.user-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.user-details {
    flex: 1;
}

.profile-page .user-name {
	font-size: 22px;
	font-weight: 700;
	color: var(--aradi-green);
	margin: 0 0 5px 0;
	line-height: 1;
}

.profile-page .user-contact {
	color: #000;
	font-size: 16px;
	margin-bottom: 5px;
	line-height: 1;
	font-weight: 400;
}
.profile-page .user-contact span {
	color: #737373;
}
.profile-page .user-bio {
	margin-top: 19px;
}

.profile-page .bio-label {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: #01383D;
	margin-bottom: 12px;
}
.profile-page .user-bio p {
	color: #272424;
	font-size: 12px;
	line-height: 1;
	margin: 0;
	font-weight: 400;
}
.profile-page .edit-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 15px;
	background: #0D342F05;
	border-radius: 8px;
	color: var(--aradi-green);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

/* Listing Summary */
.profile-page .listing-summary {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-bottom: 25px;
}
.profile-page .summary-card {
	background: white;
	border-radius: 12px;
	padding: 15px;
	display: flex;
	align-items: center;
	gap: 18px;
	flex-direction: column;
	text-align: center;
	box-shadow: 0px 4px 6px 0px #00000014;
	border: 1px solid #DCE0EA;
	justify-content: center;
}
.profile-page .summary-card-img {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #F6F6F6;
	box-shadow: 0px 0px 1.96px 0px #00000026;
	border: 1px solid white;
	display: flex;
	align-items: center;
	justify-content: center;
}
.profile-page .summary-card svg {
    color: #6b7280;
    flex-shrink: 0;
}

.profile-page .summary-content {
    flex: 1;
}
.profile-page .summary-label {
	font-size: 12px;
	color: #737373;
	margin-bottom: 5px;
    line-height: 1;
	font-weight: 400;
}
.profile-page .summary-value {
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    color: #000000DE;
}

/* Bottom Content Grid */
.bottom-content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 47px;
	align-items: flex-start;
}

.bottom-right-column {
    display: flex;
    flex-direction: column;
}

/* Feature Post */
.feature-post-section {
	margin-bottom: 20px;
}
.feature-post-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #E6E9E9;
	border-radius: 6px;
	padding: 10px 13px;
	box-shadow: 0px 4px 6px 0px #00000014;
}
.featr_img {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #F6F6F6;
	box-shadow: 0px 0px 1.96px 0px #00000026;
	border: 1px solid white;
	display: flex;
	align-items: center;
	justify-content: center;
}
.feature-post-content {
	display: flex;
	align-items: center;
	gap: 14px;
}
.feature-post-content h6 {
	font-size: 12px;
	margin-bottom: 6px;
	color: #737373;
	font-weight: 400;
	line-height: 1;
}
.feature-post-content p {
	font-size: 16px;
	margin-bottom: 0px;
	color: #000000DE;
	font-weight: 600;
	line-height: 1;
}
.buy-feature-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 7.5px 17px;
	background: var(--aradi-green);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.2s ease;
}
.bottom-content-grid .section-title {
	font-size: 16px;
	font-weight: 500;
	color: #202A3C;
	margin: 0 0 9px 0;
	text-transform: inherit;
}
.buy-feature-btn svg {
    color: white;
}

/* Performance Section */
.section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 1.5rem 0;
}

.performance-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 18px;
	row-gap: 26px;
}

.performance-card {
	display: flex;
	align-items: center;
	gap: 12px;
	border: 1px solid #DCE0EA;
	border-radius: 7px;
	padding: 21px 12px;
	box-shadow: 0px 4.82px 7.24px 0px #00000014;
	min-height: 100px;
}
.per-img {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #F6F6F6;
	box-shadow: 0px 0px 1.96px 0px #00000026;
	border: 1px solid white;
	display: flex;
	align-items: center;
	justify-content: center;
}
.per-img svg {
	width: 26px;
    height: 26px;
}
.performance-card svg {
    color: #6b7280;
    flex-shrink: 0;
}

.performance-content {
    flex: 1;
}

.performance-value {
	font-size: 18px;
	font-weight: 600;
	color: #000000DE;
	margin-bottom: 8px;
	line-height: 1;
}

.performance-label {
    font-size: 14px;
    color: #737373;
}

/* Boost Performance */
.boost-icon {
    color: #f59e0b;
    flex-shrink: 0;
}

.boost-content {
    flex: 1;
}

.boost-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
}
.boost-texts {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.boost-texts span {
	color: #737373;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
}
.boost-texts b {
	color: #000000DE;
    font-weight: 600 !important;
}
.bl {
	border-left: 1px solid #E6E9E9;
	text-align: right;
	padding-right: 14px;
}
.boost-text {
	font-size: 14px;
	font-weight: 600;
	color: #000000DE;
	line-height: 1;
	margin-bottom: 6px;
}
.boost-description {
	font-size: 12px;
	color: var(--aradi-green);
	margin: 0;
	padding-top: 8px;
	font-weight: 400;
	border-top: 1px solid #E6E9E9;
}
.boost-icon svg {
	width: 39px;
	height: 39px;
}
.boost-wrap {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 19px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .listing-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .bottom-content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .performance-grid {
        grid-template-columns: 1fr;
    }

    .user-avatar-section {
        flex-direction: column;
    }

    .edit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Availability Management Styles */
/* .availability-header-section {
	border: 1px solid #EAEFEF;
	border-radius: 12px;
	margin-bottom: 7px;
	padding: 17px 14px;
} */
.availability-layout {
	display: grid;
	grid-template-columns: 1fr 1px 1fr;
	gap: 76px;
}
.seprator {
	width: 100%;
	height: 100%;
	background: #F5F5F5;
}
.availability-left {
    display: flex;
    flex-direction: column;
}
.availability-right {
	display: flex;
	flex-direction: column;
	padding-top: 28px;
}
.availability-section .section-title {
	font-size: 16px;
	font-weight: 600;
	color: #000000DE;
	margin: 0 0 16px 0;
	text-transform: inherit;
}
.availability-section {
    margin-bottom: 0;
}

.availability-section:last-child {
    margin-bottom: 0;
}

.availability-left .availability-section:first-child,
.availability-right .availability-section:first-child {
    padding-top: 0;
}
.toggle-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
	border-radius: 10px;
	border: 1px solid #F5F5F5;
	padding: 10px;
}   
.toggle-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.toggle-title {
	font-size: 12px;
	font-weight: 500;
	color: #000000;
	margin: 0;
}
.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.status-dot-online {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #1BAF08;
	display: inline-block;
	margin-right: 3.5px;
}
.status-text {
	font-size: 12px;
	color: #737373;
	line-height: 1;
	font-weight: 400;
}
.toggle-switch {
	position: relative;
	display: inline-block;
	width: 33px;
	height: 17px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e5e7eb;
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider::before {
	position: absolute;
	content: "";
	height: 13px;
	width: 13px;
	left: 3px;
	bottom: 2px;
	background-color: white;
	transition: 0.3s;
	border-radius: 50%;
}
.toggle-switch input:checked + .toggle-slider {
    background-color: #000000DE;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(15px);
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 1rem 0;
}
.schedule-list {
	display: flex;
	flex-direction: column;
}
.schedule-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6px 0;
	border-bottom: 1px solid #F5F5F5;
    gap: 40px;
}
.schedule-day {
	font-size: 12px;
	font-weight: 500;
	color: #000000;
    min-width: 80px;
}
.schedule-input {
	padding: 9px 5px;
	border-radius: 10px;
	font-size: 12px;
	color: #000000;
	background-color: #F0F0F0;
	width: 100px;
	font-weight: 500;
}
.control-section.bb {
	border-bottom: 1px solid #0000001A;
}
.control-section h3 {
	font-size: 14px;
	font-weight: 400;
	color: #000000DE;
}
.schedule-input.closed {
	text-align: right;
	background: none;
}
.schedule-input:focus {
    outline: none;
    border-color: #2d5a27;
    background-color: white;
}
.day-off-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	padding-bottom: 20px;
	margin-bottom: 16px;
	border-bottom: 1px solid #E6E9E9;
}
.day-off-btn {
	padding: 7.5px 15px;
	border: 1px solid #737373;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 400;
	color: #737373;
	background-color: white;
	cursor: pointer;
	transition: all 0.2s;
    text-transform: capitalize;
}

.day-off-btn.active {
    background-color: #F0FFFD;
    border-color: var(--aradi-green);
    color: var(--aradi-green);
}
.control-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 16px 20px 0;
}

.number-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.control-btn {
	width: 19px;
	height: 19px;
	border: 1px solid #0000001c;
	border-radius: 50%;
	background-color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #000000;
	transition: all 0.2s;
}
.control-value {
	font-size: 14px;
	font-weight: 400;
	color: #000000;
	min-width: 45px;
	text-align: center;
}

/* Responsive Design for Availability */
@media (max-width: 768px) {
    .availability-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .schedule-list {
        gap: 1rem;
    }

    .schedule-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .schedule-input {
        flex: 1 0 100%;
        width: 100%;
    }

    .schedule-day {
        min-width: auto;
    }

    .availability-card {
        padding: 1.5rem;
    }

    .toggle-section,
    .control-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Subscription Page Styles */
.subscription-intro {
    margin-bottom: 30px;
}
.intro-title {
	font-size: 18px;
	font-weight: 600;
	color: #000000DE;
	margin: 0 0 10px 0;
}

.intro-subtitle {
	font-size: 16px;
	color: #000000DE;
	margin: 0;
}

.subscription-plans {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 27px;
	margin-bottom: 32px;
}

.subscription-card {
	background: white;
	border-radius: 8px;
	padding: 0;
	overflow: hidden;
	box-shadow: 0px 4px 16px 0px #00000033;
	border: 1px solid #E2E8F0;
}
.plan-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0;
	padding: 16px 24px;
	background-color: #F2F2F2;
	border: none;
}
.plan-header svg path {
    stroke: white;
    fill: white;
}
.plan-icon-title {
	display: flex;
	align-items: center;
	gap: 12px;
}

.plan-icon-box {
	width: 36px;
	height: 36px;
	background-color: #1a4343;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	text-align: center;
}
.upSubs_icon svg path {
	stroke: white;
	fill: white;
}
.plan-icon {
    color: white;
    width: 20px;
    height: 20px;
}

.plan-icon-star {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
}

.plan-name {
	font-size: 20px;
	font-weight: 600;
	color: var(--aradi-green);
	margin: 0;
}

.plan-recommended-badge {
	display: inline-block;
	background: linear-gradient(135deg, #0D352F 0%, #1a4343 100%);
	color: white;
	font-size:7px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 1px 8px;
	border-radius: 12px;
	position: absolute;
	top: 34px;
	right:5px;
	box-shadow: 0 2px 8px rgba(13, 53, 47, 0.3);
	z-index: 10;
	white-space: nowrap;
}

.plan-icon-title {
	position: relative;
}

.plan-price {
    font-size: 20px;
	font-weight: 700;
	color: var(--aradi-green);
}

.plan-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 0;
    display: none;
}

.plan-benefits {
	margin-top: 0;
	padding: 20px 24px;
	background-color: white;
}

.benefits-title {
	font-size: 16px;
	font-weight: 700;
	color: #01383D;
	margin: 0 0 12px 0;
}
.benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.benefit-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: #374151;
}
.subscription-card:last-child {
	border: 1px solid #AABFBD;
}
.check-icon {
    color: #4caf50;
    flex-shrink: 0;
}

.upgrade-section {
    display: flex;
    justify-content: flex-end;
}
.upgrade-btn {
	padding: 9px 26px;
	background-color: var(--aradi-green);
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}

.upgrade-btn svg {
    width: 16px;
    height: 16px;
}

/* Responsive Design for Subscription */
@media (max-width: 768px) {
    .subscription-plans {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .plan-header {
        padding: 1rem 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .plan-benefits {
        padding: 1rem 1.25rem;
    }

    .upgrade-section {
        justify-content: center;
    }

    .upgrade-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Password Page Styles */
.password-title {
	font-size: 24px;
	font-weight: 700;
	color: #222222;
	margin: 0 0 13px 0;
}
.password-subtitle {
	font-size: 16px;
	color: #737373;
	margin: 0 0 33px 0;
	font-weight: 400;
	line-height: 1;
}
.password-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.password-card .form-group {
	display: flex;
	flex-direction: column;
	gap: 13px;
}
.password-card label {
	color: #737373;
	font-size: 14px;
	font-weight: 600;
	margin: 0;
	line-height: 1;
}
.password-card input {
	border: 1px solid #EDF3F1;
	background: #fafafa;
	height: 42px;
	font-size: 14px;
	font-weight: 400;
	border-radius: 10px;
	padding: 0 10px;
}

.property-create-page .form-label {
	font-size: 14px;
	font-weight: 600;
	color: #737373;
	margin-bottom: 10px;
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #333333;
    outline: none;
    transition: all 0.2s;
}

.password-input:focus {
    background-color: #eeeeee;
    border-color: #bdbdbd;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #616161;
}

.update-btn {
    padding: 0.875rem 3rem;
    background-color: #212121;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: auto;
    display: inline-block;
}

/* Responsive Design for Password Page */
@media (max-width: 768px) {
    .password-card {
        padding: 2rem 1.5rem;
    }

    .password-title {
        font-size: 1.5rem;
    }

    .password-subtitle {
        font-size: 0.875rem;
    }

    .update-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}

/* Help & Support Page Styles */
.help-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	padding-top: 9px;
}
.help-left {
	display: flex;
	flex-direction: column;
	padding-right: 69px;
	border-right: 1px solid #F5F5F5;
}

.help-right {
    display: flex;
    flex-direction: column;
	padding-left: 63px;
}
.help-right .faq-section {
	max-width: 300px;
}

.contact-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212121;
    margin: 0 0 1.5rem 0;
}
.contact-cards-horizontal {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 9px;
}

.contact-card-horizontal {
	background: white;
	border: 1px solid #00000017;
	border-radius: 7px;
	padding: 20px 11px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.contact-label-horizontal {
	font-size: 12px;
	font-weight: 500;
	color: #6B7084;
	margin: 0 0 8px 0;
    display: block;
}

.contact-value-horizontal {
    font-size: 11px;
    font-weight: 600;
    color: #050D2B;
    margin: 0;
}
.faq-section-title {
	font-size: 14px;
	font-weight: 500;
	color: #050D2B;
	margin: 0 0 10px 0;
}
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.faq-item {
	border: 1px solid #D1D7DF;
	border-radius: 7px;
	padding: 6px 12px;
}
.faq-question {
	padding: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: all 0.2s;
}
.faq-question span {
	font-size: 12px;
	font-weight: 600;
	color: #050D2B;
	margin: 0;
}
.faq-icon {
    color: #6b7280;
    transition: transform 0.3s;
}

.faq-icon.expanded {
    transform: rotate(180deg);
}

.faq-toggle-plus,
.faq-toggle-minus {
    font-size: 1.5rem;
    font-weight: 300;
    color: #212121;
    line-height: 1;
}
.faq-answer {
	padding: 11px 0 0;
	font-size: 12px;
	color: #6B7084;
	font-weight: 400;
}

/* Responsive Design for Help & Support */
@media (max-width: 768px) {
    .help-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-section {
        padding: 1.5rem;
    }

    .contact-cards-horizontal {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact-card-horizontal {
        padding: 1.25rem;
    }

    .faq-section {
        padding: 1.5rem;
    }

    .faq-question span {
        font-size: 0.875rem;
    }

    .faq-answer {
        font-size: 0.8125rem;
    }
}

/* Content Pages Styles (About, Privacy, Terms) */
.content-page-title {
	font-size: 24px;
	font-weight: 700;
	color: #222222;
	margin: 0 0 25px 0;
}
.content-last-updated {
	margin-bottom: 0;
	color: #737373;
	font-size: 16px;
	font-weight: 500;
}
.profile-content .content-body * {
	color: #737373;
	font-size: 16px;
	font-weight: 500;
}
.profile-content .content-body ol, .profile-content .content-body ul {
	list-style: decimal;
	padding-left: 20px;
	color: #737373;
	font-size: 16px;
	font-weight: 500;
}
.profile-content .content-body ol {
	list-style: decimal;
}
.profile-content .content-body ul {
	list-style: disc;
}

.content-body {
    color: #212121;
    line-height: 1.8;
}

.content-intro {
    font-size: 1rem;
    margin: 0 0 2rem 0;
    color: #374151;
}

.content-section {
    margin-bottom: 2rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-title-number {
    font-size: 1.125rem;
    font-weight: 700;
    color: #212121;
    margin: 0 0 0.75rem 0;
}

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

.content-list li {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.content-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #212121;
    font-weight: bold;
}

.content-list li strong {
    color: #212121;
    font-weight: 600;
}

.content-list a {
    color: #2d5a27;
    text-decoration: underline;
}

/* Responsive Design for Content Pages */
@media (max-width: 768px) {
    .content-card-page {
        padding: 1.5rem;
    }

    .content-page-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .content-intro {
        font-size: 0.875rem;
    }

    .section-title-number {
        font-size: 1rem;
    }

    .content-list li {
        font-size: 0.875rem;
    }
}

.aradi_card {
    padding: 6px 5px 0;
    background: white;
    border-radius: 16px;
    border: none;
}
.aradi_card .property-image {
    border-radius: 12px;
    height: 240px;
}
.aradi_card .property-content {
    padding: 18px 12.5px 15px 12.5px;
}
.aradi_card .property-badge {
    position: absolute;
    top: 24px;
    right: 0;
    width: 102px;
    height: 40px;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a205;
    background: #ffffffcc;
    gap: 6px;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 500;
}
.pending-badge{
    position: absolute;
    top: 24px;
    right: 0;
    width: 102px;
    height: 40px;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:  #DE5003;
    background: #ffffffcc;
    gap: 6px;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 500;
}

.rejected-badge{
    position: absolute;
    top: 24px;
    right: 0;
    width: 102px;
    height: 40px;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:  red;
    background: #ffffffcc;
    gap: 6px;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 500;
}

.aradi_card .property-badge svg {
    background: #00a205;
    border-radius: 50px;
    padding: 2px;
}
.aradi_card .property-header {
    margin-bottom: 6px;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}
.aradi_card .property-title {
    font-size: 16px;
    font-weight: 600;
    color: #000000de;
    margin: 0;
    display: flex;
    gap: 5px;
}
.aradi_card .property-type {
    font-size: 14px;
    color: #737373;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}
.aradi_card .property-description {
    font-size: 14px;
    color: #737373;
    line-height: 1.4;
    margin: 0 0 14px 0;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aradi_card .property-location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000000de;
    font-size: 14px;
    margin-bottom: 9px;
}
.aradi_card .property-price {
    font-size: 16px;
    font-weight: 500;
    color: #000000de;
    margin-bottom: 14px;
}
.aradi_card .property-price span {
    color: #737373;
}
.aradi_card .property-specs {
    gap: 16px;
    margin-bottom: 14px;
}
.aradi_card .spec-item {
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
}
.aradi_card .action-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 10px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #e4e4e4;
    background: white;
    color: var(--aradi-green);
    cursor: pointer;
    transition: all 0.2s ease;
    justify-content: center;
}
.aradi_card .action-btn.delete {
    color: #ef233c;
}
.more-filters-btn span {
    display: none;
}

.aradi_property_detail_page .status-badge {
    padding: 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    text-transform: capitalize;
    line-height: 16px;
}
.aradi_property_detail_page .status-badge.approved {
    background-color: #22c358;
    color: #fafafa;
}
.aradi_property_detail_page .price-section {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 10px 10px;
    background: white;
    box-shadow: 0px 1px 2px 0px #ffffff;
    border: 1px solid #dae7e3;
    margin-bottom: 24px;
    flex-direction: row;
}
.aradi_property_detail_page .property-price {
	font-size: 24px;
	font-weight: 700;
	color: #00422E;
	margin-bottom: 0;
}
.aradi_property_detail_page .boost-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: none;
    padding: 0;
    width: auto !important;
    background: transparent;
    margin: 0;
    flex: inherit;
}
.aradi_property_detail_page .boost-info span {
    color: #437062;
    font-size: 14px;
    font-weight: 400;
}
.aradi_property_detail_page .property-detail-container {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 15px;
    align-items: start;
}
.aradi_property_detail_page .panel-title {
    font-size: 18px;
    font-weight: 600;
    color: #202a3c;
    margin: 0;
    border-bottom: none;
    padding: 24px;
}
.aradi_property_detail_page .panel-title.regulatory-info {
    border-bottom: 1px solid #e6e9e9;
    padding: 12px 12px 8px;
}
.aradi_property_detail_page .info-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    border-bottom: none;
    gap: 8px;
}
.aradi_property_detail_page .info-label {
    color: #737373;
    font-size: 14px;
    font-weight: 400;
}
.aradi_property_detail_page .info-value {
    color: #000000de;
    font-size: 14px;
    font-weight: 400;
}
.aradi_property_detail_page .action-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #edf3f1;
    background: #fafafa;
    color: #000000de;
    cursor: pointer;
    transition: all 0.2s ease;
    justify-content: center;
}
.aradi_property_detail_page .gray0d {
    border: 1px solid #fafafa;
}
.aradi_property_detail_page .red0d {
    border: 1px solid #e4e4e4;
    background: white;
    color: #ef233c;
    font-weight: 400;
}
.aradi_property_detail_page .section-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000de;
    margin: 0 0 12px;
    text-transform: inherit;
    line-height: 18px;
}
.aradi_property_detail_page .description-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000de;
    margin: 24px 0 0;
    text-transform: inherit;
    line-height: 26px;
}
.aradi_property_detail_page .property-specifications .spec-item {
    display: flex;
    gap: 1.46px;
    flex-direction: column;
    align-items: flex-start;
}
.aradi_property_detail_page .property-specifications .spec-label {
    font-size: 14px;
    color: #737373;
    font-weight: 400;
    display: block;
    margin-bottom: 0;
}
.aradi_property_detail_page .property-specifications .spec-value {
    font-size: 16px;
    color: #000000de;
    font-weight: 600;
    display: block;
}
.sidebar-panel.border {
    border: 1px solid #dae7e3;
    box-shadow: 0px 1px 2px 0px #ffffff;
}
.breakdown-item:first-child {
    padding-top: 0;
}
.breakdown-item:last-child {
    border-bottom: none;
}
.boost-content.bp {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 11px;
}
.aradi_bar {
    width: 100%;
}

.chart-card .header-rowz {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    height: 22px;
}
.chart-card .header-rowz h4 {
    font-size: 20px;
    line-height: 600;
    color: #000000de;
}
.chart-card select {
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.aradi_bar #chart-container {
    width: 100%;
    max-width: 450px;
    margin: auto;
    padding-bottom: 20px;
}
.aradi_add_prop_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.aradi_add_prop_modal {
    background: #fff;
    width: 90%;
    max-width: 712px;
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
    animation: fadeIn 0.25s ease;
    max-height: 90%;
    overflow-y: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.aradi_add_prop_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    margin-left: 24px
    
}

.aradi_add_prop_title {
    font-size: 24px;
    font-weight: 600;
    color: #000000de;
}
.aradi_add_prop_close {
    font-size: 18px;
    cursor: pointer;
    color: #292d32;
    border-radius: 50px;
    border: 2px solid #292d32;
    width: 22px;
    height: 22px;
    display: flex;
    align-content: center;
    justify-content: center;
    line-height: 17.5px;
}
.map_search_wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.aradi_add_prop_search {
    padding: 15px 46px;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
    height: 60px;
    position: absolute;
    left: 25px;
    right: 25px;
    top: 33px;
    box-shadow: 0 0 5px 0 lightgray;
}
.aradi_add_prop_search_container {
    position: relative;
}
.aradi_add_prop_search_container svg {
    position: absolute;
    top: 52px;
    left: 36px;
}
.aradi_add_prop_map {
    width: 100%;
}
.aradi_add_prop_footer {
    display: flex;
    justify-content: space-between;
    margin-top: 11px;
}

.aradi_add_prop_prev {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    color: #00291d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 17px;
    border-radius: 10px;
    transition: all 0.2s ease;
    height: 40px;
    background: #fafafa;
    border: 1px solid #edf3f1;
}
.aradi_add_prop_next {
    color: #fafafa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.2s ease;
    height: 40px;
    background: #000000de;
    border: 1px solid #000000de;
}
.property-create-page .form-group.location_input {
    position: relative;
}
.property-create-page .form-group.location_input svg {
    position: absolute;
    right: 16px;
    top: 43px;
}
.property-create-page .amenity-text {
    font-size: 14px;
    font-weight: 400;
    color: #737373;
}
.property-create-page .amenity-item input[type="checkbox"] {
    display: inline-block;
    width: 24px;
    height: 24px;
    accent-color: #000000DE;
}
.property-create-page .upload-area {
    border: 1px dashed #dae7e3;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #f9fafb;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: white;
}
.property-create-page .upload-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000de;
    margin: 7px 0 4px;
}
.property-create-page .upload-formats {
    font-size: 12px;
    color: #000000de;
    margin: 0;
}
.property-create-page .feature-content {
    display: flex;
    align-items: center;
    gap: 14px;
}
.property-create-page .feature-title {
    font-size: 14px;
    font-weight: 400;
    color: #000000de;
    margin: 0 0 3px 0;
}
.property-create-page .feature-subtitle {
    font-size: 12px;
    color: #737373;
    margin: 0 0 3px 0;
}
.property-create-page .feature-p {
    font-size: 12px;
    color: #737373;
    margin: 0;
}

.property-create-page .feature-p b {
    color: var(--aradi-green);
}
.property-create-page .feature-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.property-create-page .feature-label {
    font-size: 14px;
    font-weight: 400;
    color: #737373;
}
.property-specifications.property-specifications1 .specs-grid {
    grid-template-columns: repeat(4, 1fr);
}
.property-create-page input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #000000DE;
}
.aradi_feat_btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 15px;
    background-color: var(--aradi-green);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 14px;
    line-height: 18px;
}
.property-status.property-status-preview {
    gap: 12px;
}
.property-status.property-status-preview p {
    font-size: 12px;
    font-weight: 600;
    color: #737373;
}
.aradi_publishprop_btn {
    padding: 15px 45px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    text-transform: capitalize;
    line-height: 16px;
    background-color: #000000de;
    color: #fff;
    border: 1px solid #000000de;
}
.aradi_editprop_btn {
    padding: 15px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    text-transform: capitalize;
    line-height: 16px;
    background-color: #fff;
    color: #000000de;
    border: 1px solid #000000de;
}
.booking-page-wrapper {
	display: grid;
	grid-template-columns: .6fr 1fr;
	gap: 30px;
	align-items: flex-start;
}
.doc_message_page.messages-page {
    margin-top: 10px;
    min-height: calc(100vh - 90px);
    background-color: #f8f9fa;
    padding-bottom: 10px;
}

.doc_message_page .messages-container {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 0;
    height: calc(100vh - 90px);
}

/* Left Sidebar - Messages List */
.doc_message_page .messages-sidebar {
	background-color: white;
	border-radius: 7px 0 0 7px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #EBEBEB;
}

.doc_message_page .contacts-list {
	flex: 1;
	overflow-y: auto;
	padding: 0 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.doc_message_page .search-container {
	position: relative;
	padding: 12px 19px;
}
.doc_message_page .search-input {
	width: 100%;
	padding: 13px 20px 13px 44px;
	border: 1px solid #F3F3F3;
	border-radius: 12px;
	font-size: 0.875rem;
	background-color: #F3F3F3;
	height: 48px;
	font-size: 14px;
	font-weight: 400;
	color: black;
}

.doc_message_page .search-input:focus {
    outline: none;
    border-color: #2D5A27;
    background-color: white;
}

.doc_message_page .search-icon {
	position: absolute;
	left: 35px;
	top: 36px;
	transform: translateY(-50%);
	color: #9ca3af;
}
.doc_message_page .contacts-list {
	flex: 1;
	overflow-y: auto;
	padding: 0 16px;
}
.doc_message_page .contact-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 12px;
	cursor: pointer;
	transition: background-color 0.2s;
}
.doc_message_page .contact-item.active {
    background-color: #F7F7F7;
}
.doc_message_page .contact-avatar {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	object-fit: cover;
	flex-shrink: 0;
}
.doc_message_page .messages-title {
	font-size: 20px;
	font-weight: 600;
	color: #000;
	margin: 0;
	padding: 28px 24px;
	border-bottom: 1px solid #e5e7eb;
	height: 81px;
}
.doc_message_page .contact-info {
    flex: 1;
    min-width: 0;
    gap: 4px;
}

.doc_message_page .contact-name {
	font-size: 13px;
	font-weight: 500;
	color: black;
	margin: 0;
	line-height: 1;
}
.doc_message_page .contact-last-message {
	font-size: 11px;
	color: #0006;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: 400;
}
.doc_message_page .chat-area {
	background-color: #f8f9fa;
	border-radius: 0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.doc_message_page .chat-header {
	background-color: white;
	padding: 15px 24px;
	border-bottom: 1px solid #EBEBEB;
	display: flex;
	align-items: center;
	gap: 16px;
	height: 81px;
}

.doc_message_page .chat-avatar {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	object-fit: cover;
}

.doc_message_page .chat-user-info {
    flex: 1;
	display: flex;
	align-items: flex-start;
	gap: 0;
	flex-direction: column;
}
.doc_message_page .chat-user-name {
	font-size: 20px;
	font-weight: 600;
	color: #000;
	margin: 0;
	line-height: 20px;
}
.doc_message_page .chat-status {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: #000000;
	position: relative;
	font-weight: 600;
}
.doc_message_page .chat-status span {
	opacity: 60%;
}
.doc_message_page .status-dot {
	width: 10px;
	height: 10px;
	background-color: #68D391;
	border-radius: 50%;
	position: relative;
	bottom: 0;
	left: 0;
	transform: none;
}

.doc_message_page .chat-messages {
	flex: 1;
	padding: 24px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 32px;
    background: white;
}

.doc_message_page .message {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	max-width: 70%;
}

.doc_message_page .message.sent {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.doc_message_page .message.received {
    align-self: flex-start;
}

.doc_message_page .message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.doc_message_page .message-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.doc_message_page .message-bubble {
    padding: 0;
    word-wrap: break-word;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.doc_message_page .message-bubble p {
	font-size: 14px;
	font-weight: 400;
	border-radius: 12px;
	padding: 8px 16px;
	width: fit-content;
}
.doc_message_page .message.sent .message-bubble p {
    background-color: var(--aradi-green);
    color: #fff;
}

.doc_message_page .message.received .message-bubble p {
    background-color: #F1F1F1;
    color: #000000;
}

.doc_message_page .message-time {
	font-size: 12px;
	color: #8C8C8C;
	padding: 0;
	margin: 0;
	justify-content: flex-end;
}
.doc_message_page .message.sent .message-time {
    text-align: right;
}

.doc_message_page .message.received .message-time {
    text-align: left;
}

.doc_message_page .message-status {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.doc_message_page .message.sent .message-status {
    justify-content: flex-end;
}
.doc_message_page .message-input-container {
	background-color: white;
	padding: 17px 24px;
	border-top: none;
	display: flex;
	align-items: center;
	gap: 24px;
	position: relative;
}
.doc_message_page .message-input {
	flex: 1;
	padding: 13px 20px;
	border: 2px solid #E2E8F0;
	border-radius: 12px;
	font-size: 13px;
	background-color: #f9fafb;
	font-weight: 600;
	height: 48px;
}

.doc_message_page .message-input:focus {
    outline: none;
}

.doc_message_page .send-btn {
	cursor: pointer;
	border: none;
	background: transparent;
	right: 46px;
}

/* Empty State */
.doc_message_page .empty-chat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #9ca3af;
    text-align: center;
}

.doc_message_page .empty-chat-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.doc_message_page .empty-chat-text {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.doc_message_page .empty-chat-subtext {
    font-size: 0.875rem;
}
.doc_message_page .chat-messages .message-avatar {
	width: 40px;
	height: 40px;
	border-radius: 8px;
}
.subscrption .profile-content {
	padding: 0;
}
.subscrption .profile-content .content-title {
	border-bottom: 1px solid #0000001c;
	margin: 0;
	padding: 23px 38px;
	line-height: 1;
}
.subs-text {
	padding: 18px 38px 27px;
}
.upSubs_card {
	width: auto;
	background: #ffffff;
	border:2px solid #EAEFEF;
	border-radius: 12px;
	padding: 18px 22px;
	margin: 31px 38px;
}
.upSubs_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.upSubs_left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.upSubs_icon {
	width: 36px;
	height: 36px;
	background: var(--aradi-green);
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
}
.upSubs_title {
	font-size: 20px;
	font-weight: 600;
	color: var(--aradi-green);
	line-height: 1;
	margin: 0;
}
.upSubs_expiry {
	font-size: 13px;
	color: #FF0000;
	line-height: 1.8;
}
.upSubs_upgradeBtn {
	background: #0D352F;
	color: #FAFAFA;
	padding: 9.5px 15.5px;
	border-radius: 10px;
	border: none;
	font-size: 14px;
	cursor: pointer;
	font-weight: 600;
}
.upSubs_divider {
    margin: 18px 0;
    border: none;
    border-top: 1px solid #efefef;
}
.upSubs_divider {
	margin: 19px 0;
	border: none;
	border-top: 1px solid #F3F3F3;
}
.upSubs_benefitItem {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #374151;
	font-size: 14px;
}
.upSubs_check {
    color: #0DA35B;
    font-size: 18px;
}
.availability-card .toggle-section {
	margin-bottom: 6px;
}
#editProfileModal .btn.btn-primary {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 7.5px 17px;
	background: var(--aradi-green);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.2s ease;
}
#editProfileModal .btn.btn-secondary {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 7.5px 17px;
	background: #dedede;
	color: black;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.2s ease;
}
#editProfileModal .modal-content {
	padding: 0 !important;
}
#editProfileModal .modal-body {
	padding: 30px 30px 0;
}
#editProfileModal .form-label {
	margin-bottom: 6px;
	font-weight: 500;
	font-size: 12px;
	color: #000000DE;
}
#editProfileModal input[type="text"], #editProfileModal input[type="email"], #editProfileModal textarea.form-control {
	background: #EDEDED;
	border: none;
	height: 44px;
	font-size: 12px;
	font-weight: 400;
}
#editProfileModal textarea.form-control {
	height: 74px;
}
#editProfileModal .modal-footer {
	border: none;
	padding-top: 0;
}
#save {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 13px 15px;
	background-color: var(--aradi-green);
	color: white;
	text-decoration: none;
	border-radius: 12px;
	font-weight: 500;
	transition: all 0.2s ease;
	font-size: 14px;
	line-height: 18px;
	margin-left: auto;
}
.password-card {
	max-width: 611px;
}
.password-card .update-btn {
	padding: 9.5px 17px;
	background-color: #000000DE;
	color: #FAFAFA;
	border: none;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	width: auto;
	display: inline-block;
}
.analytics-page .boost-card {
	padding: 0 !important;
}
.property-header .header-actions {
	gap: 12px;
}
.aradi_property_detail_page .action-btn[type="submit"] {
	justify-content: center;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 13px 44px;
	background-color: #000000DE;
	border: 1px solid #000000DE;
	color: white;
	text-decoration: none;
	border-radius: 12px;
	font-weight: 500;
	transition: all 0.2s ease;
	font-size: 14px;
	line-height: 18px;
}
#default_upload_ui_bulk_image {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media (max-width: 767px) {
    .page-content {
        margin-top: 0;
    }
    .listing-item {
        gap: 8px;
        padding: 12px;
        flex-direction: column;
        position: relative;
    }
    .property-specifications.property-specifications1 .specs-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .listing-meta {
        gap: 10px;
        flex-wrap: wrap;
    }
    .active-btn,
    .pending-btn {
        position: absolute;
        top: 10px;
        right: 10px;
    }
    .aradi_card .property-content {
        padding: 18px 6px 15px 6px;
    }
    .aradi_card .action-btn {
        gap: 4px;
    }
    .aradi_card .property-specs {
        gap: 12px;
        margin-bottom: 14px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .aradi_card .action-btn span {
        font-size: 12px;
    }
    .filter-select {
        min-width: calc(100vw - 65px);
    }
    .properties-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .more-filters-btn {
        display: flex;
        gap: 5px;
        align-items: center;
    }
    .more-filters-btn span {
        display: inline-block;
    }
    .filter-section {
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .aradi_property_detail_page .property-detail-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .property-detail-page {
        padding: 0 0 24px;
    }
    .aradi_property_detail_page .property-title,
    .aradi_property_detail_page .property-price {
        font-size: 20px;
        margin: 0 0 5px;
    }
    .property-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
    .aradi_property_detail_page .price-section {
        padding: 12px 18px;
        align-items: flex-start;
        flex-direction: column;
    }
    .aradi_property_detail_page .description-text {
        font-size: 14px;
        margin: 0;
    }

    .kpi-card {
        padding: 30px 25px;
        gap: 10px;
    }
    .kpi-icon {
        width: 50px;
        height: 50px;
        padding: 10px;
    }
    .kpi-title {
        font-size: 16px;
        margin: 0 0 0 0;
    }
    .kpi-value {
        font-size: 22px;
    }
    .kpi-grid {
        column-gap: 18px;
        row-gap: 18px;
    }
    .charts-grid {
        gap: 26px;
        grid-template-columns: 1fr;
    }
    .boost-title {
        font-size: 16px;
    }
    .boost-content.bp {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
    .trends-section {
        padding: 12px;
    }
    .chart-card {
        background-color: white;
        border: 1px solid #e2e8f0;
        border-radius: 9px;
        padding: 15px 4px;
    }
    .property-create-page .page-title,
    .aradi_add_prop_title {
        font-size: 20px;
    }
    .property-create-page .form-container {
        max-width: 100% !important;
        margin: 0;
    }
    .property-create-page .section-title {
        font-size: 20px;
        margin: 0 0 12px 0;
    }
    .property-create-page .form-grid {
        grid-template-columns: 1fr;
    }
    .aradi_add_prop_header {
        margin-bottom: 8px;
    }
    .aradi_add_prop_search {
        padding: 0 46px;
        height: 48px;
        left: 15px;
        right: 15px;
        top: 18px;
    }
    .aradi_add_prop_search_container svg {
        top: 30px;
        left: 29px;
    }
    .aradi_add_prop_map iframe {
        height: 300px;
    }
    .aradi_editprop_btn, .aradi_publishprop_btn {
        padding: 8px 12px;
        border-radius: 5px;
        font-size: 12px;
    }
    .booking-page-wrapper {
        grid-template-columns: 1fr;
    }
    .calendar-header {
        margin-bottom: 10px;
    }
    .calendar-date {
        font-size: 12px;
        width: 30px;
    }
    .calendar-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    .day-header {
        font-size: 12px;
        padding: 0;
    }
    .calendar-month {
        font-size: 14px;
    }
    .bookings-page {
        padding: 12px 0 40px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .quick-actions-grid {
        max-width: 100%;
    }
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .property-specifications.property-specifications1 .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .aradi_property_detail_page .property-detail-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .property-detail-page {
        padding: 0;
    }
    .kpi-card {
        padding: 30px 25px;
        gap: 10px;
    }
    .kpi-icon {
        width: 50px;
        height: 50px;
        padding: 10px;
    }
    .kpi-title {
        font-size: 16px;
        margin: 0 0 0 0;
    }
    .kpi-value {
        font-size: 22px;
    }
    .kpi-grid {
        column-gap: 18px;
        row-gap: 18px;
    }
    .charts-grid {
        gap: 26px;
        grid-template-columns: 1fr;
    }
    .property-header {
        align-items: flex-start;
        gap: 14px;
        flex-direction: column;
    }
    .booking-page-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1024px) and (max-width: 1300px) {
    .quick-actions-grid {
        max-width: 100%;
    }
    .listing-meta {
        gap: 10px;
        flex-wrap: wrap;
    }
    .kpi-card {
        padding: 30px 25px;
        gap: 10px;
    }
    .kpi-icon {
        width: 50px;
        height: 50px;
        padding: 10px;
    }
    .kpi-title {
        font-size: 16px;
        margin: 0 0 0 0;
    }
    .kpi-value {
        font-size: 22px;
    }
    .kpi-grid {
        column-gap: 18px;
        row-gap: 18px;
    }
    .charts-grid {
        gap: 26px;
    }
    .calendar-date {
        width: 45px;
    }
}
