:root {
    --c-primary: #bc69b1;
    --c-secondary: #6fc7cf;
    --c-dark-blue: #162b5c;
    --c-medium-blue: #24469d;
    --c-text-dark: #303030;
    --c-text-light: #ffffff;
    --c-text-gray: #f5f5f5;
    --c-border: #d9d9d9;
    --font-heading: 'Adamina', serif;
    --font-display: 'Adamina', serif;
    --font-main: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --color-primary: #bc69b1;
    --color-secondary: #162b5c;
    --color-text-dark: #000000;
    --color-text-light: #ffffff;
    --color-bg-light: #ffffff;
    --color-bg-grey: #f5f5f5;
    --color-border: #d9d9d9;
    --color-primary: #162b5c;
    --color-secondary: #bc69b1;
    --color-text-dark: #303030;
    --color-background-light: #f5f5f5;
    --color-border-light: #f5f5f5;
    --color-border-medium: #d9d9d9;
    --color-link: #25abff;
	    --color-primary: #162b5c;
    --color-secondary: #bc69b1;
    --color-accent: #80d5dd;
    --color-background-light-2: #d4fbff;
    --color-text-dark: #303030;
    --color-text-light: #ffffff;
    --color-border: #d9d9d9;
	    --font-family-heading: 'Adamina', serif;
    --font-family-body: 'Montserrat', sans-serif;
	  --primary-color: #162b5c;
  --text-dark: #303030;
  --text-light: #ffffff;
  --border-color: #d9d9d9;
  --input-border: #303030;
  --placeholder-color: #c5c5c5;
  --background-light-gray: #f5f5f5;
  --btn-revoke-bg: #cd3d00;
  --btn-disable-bg: #545290;
  --btn-disable-light-bg: #d9d9d9;
  --btn-resend-bg: #80d5dd;
  --checkbox-checked-bg: #25abff;
  --checkbox-checked-border: #69c6ff;
   --font-primary: 'Montserrat', sans-serif;
  --color-text-primary: #000000;
  --color-text-secondary: #303030;
  --color-text-accent: #162b5c;
  --color-text-placeholder: #c5c5c5;
  --color-bg-main: #ffffff;
  --color-bg-accent: #d4fbff;
  --color-border-light: #d9d9d9;
  --color-border-medium: #c5c5c5;
  --color-border-accent: #b2ecf1;
  --font-primary: 'Montserrat', sans-serif;
  --color-text-primary: #000000;
  --color-text-secondary: #303030;
  --color-text-accent: #162b5c;
  --color-text-placeholder: #c5c5c5;
  --color-bg-main: #ffffff;
  --color-bg-accent: #d4fbff;
  --color-border-light: #d9d9d9;
  --color-border-medium: #c5c5c5;
  --color-border-accent: #b2ecf1;  
      --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-bg-secondary: #f9fafb;
}


* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    margin: 0;
    background-color: #ffffff;
    color: var(--c-text-dark);
}

.container {
    max-width: 1385px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--c-primary);
    color: var(--c-text-light);
    font-family: var(--font-body);
}

.btn-secondary {
    background-color: var(--c-secondary);
    color: var(--c-dark-blue);
    font-family: var(--font-body);
}

@media (max-width: 992px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-block.row {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 36px;
    }
}
/* ================================================
   MODERN POPUP CSS SYSTEM
   ================================================ */

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}

/* Base Popup Card */
.popup-card {
    background-color: #ffffff;
    border-radius: 18px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: popupSlideIn 0.3s ease-out;
}

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

/* Popup Sizes */
.popup-card--small {
    width: 100%;
    max-width: 400px;
    padding: 44px 36px 34px;
}

.popup-card--medium {
    width: 100%;
    max-width: 500px;
    padding: 40px;
}

.popup-card--large {
    width: 100%;
    max-width: 700px;
    padding: 40px;
}

.popup-card--full-form {
    width: 100%;
    max-width: 600px;
    padding: 30px 40px 40px;
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background-color: #f5f5f5;
    color: #333;
}

/* Logo */
.popup-logo {
    width: 93px;
    height: 30px;
    margin: 0 auto 37px;
    display: block;
}

/* Typography */
.popup-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0 0 16px;
    text-align: center;
    line-height: 1.3;
}

.popup-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin: 0 0 12px;
    text-align: center;
}

.popup-message {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    margin: 0 0 24px;
    text-align: center;
}

.popup-message--left {
    text-align: left;
}

.popup-warning {
    color: #d73027;
    font-weight: 500;
    text-align: center;
    margin-bottom: 16px;
}

.popup-success {
    color: #2e7d32;
    font-weight: 500;
    text-align: center;
    margin-bottom: 16px;
}

/* Buttons */
.popup-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 120px;
    height: 48px;
    padding: 0 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    margin: 4px;
}

.popup-button--primary {
    background-color: #bc69b1;
    color: #ffffff;
    font-family: var(--font-body);
}

.popup-button--primary:hover {
    background-color: #a85ba0;
}


.popup-button--secondary {
    background-color: #f5f5f5;
    color: #333;
    font-family: var(--font-body);
}

.popup-button--secondary:hover {
    background-color: #e0e0e0;
}

.popup-button--danger {
    background-color: #d73027;
    color: #ffffff;
}

.popup-button--danger:hover {
    background-color: #c12920;
}

.popup-button--success {
    background-color: #2e7d32;
    color: #ffffff;
}

.popup-button--success:hover {
    background-color: #1b5e20;
}

.popup-button--full {
    width: 100%;
}

/* Button Groups */
.popup-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.popup-buttons--stacked {
    flex-direction: column;
    align-items: stretch;
}

.popup-buttons--space-between {
    justify-content: space-between;
}

/* Form Elements */
.popup-form-group {
    margin-bottom: 20px;
    text-align: left;
}

.popup-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

.popup-input,
.popup-textarea,
.popup-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.popup-input:focus,
.popup-textarea:focus,
.popup-select:focus {
    outline: none;
    border-color: #bc69b1;
}

.popup-textarea {
    min-height: 100px;
    resize: vertical;
}

.popup-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 16px 0;
}

.popup-checkbox {
    margin-top: 2px;
}

.popup-checkbox-label {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    cursor: pointer;
}

/* Error Messages */
.popup-error {
    color: #d73027;
    font-size: 14px;
    margin-top: 4px;
    margin-bottom: 12px;
}

/* Content Sections */
.popup-section {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.popup-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.popup-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 16px;
}

.popup-info-label {
    font-weight: 500;
    color: #333;
}

.popup-info-value {
    color: #666;
}

/* File Upload */
.popup-file-input {
    width: 100%;
    padding: 16px;
    border: 2px dashed #bc69b1;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 12px;
}

.popup-file-input:hover {
    background-color: #f8f4f8;
}

/* Responsive */
@media (max-width: 768px) {
    .popup-overlay {
        padding: 10px;
    }
    
    .popup-card--small,
    .popup-card--medium,
    .popup-card--large,
    .popup-card--full-form {
        padding: 24px 20px 30px;
    }
    
    .popup-buttons {
        flex-direction: column;
    }
    
    .popup-button {
        width: 100%;
        margin: 4px 0;
    }
    
    .popup-title {
        font-size: 20px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0 !important; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* CSS for section section:header */
/* Update existing styles */
.site-header {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Button group styling */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hide desktop nav on mobile */
.desktop-nav {
    display: block;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--c-dark-blue);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav li {
    border-bottom: 1px solid var(--c-border);
}

.mobile-nav a {
    display: block;
    padding: 16px 20px;
    color: var(--c-dark-blue);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mobile-nav a:hover {
    background-color: #f5f5f5;
}

/* Responsive styles */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-buttons {
        display: none; /* Hide desktop buttons on mobile */
    }
    
    .header-container {
        justify-content: space-between;
    }
}

@media (min-width: 993px) {
    .mobile-nav {
        display: none !important;
    }
}
    .logo img {
        display: block;
        height: 44px;
    }
    .main-nav ul {
        display: flex;
        gap: 40px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .main-nav a {
        font-size: 14px;
        font-weight: 600;
        color: var(--c-dark-blue);
    }
    .login-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    .header-divider {
        border: none;
        height: 1px;
        background-color: var(--c-border);
        margin: 0;
    }
    @media (max-width: 992px) {

        .dashboard-section {
            padding: 0px 0 !important;
        }

        .main-nav ul {
            display: flex;
            width: 100% !important;
            gap: 1%;
        }
        .header-container {
            justify-content: space-between;
        }
    }

/* CSS for section section:hero */
#hero {
        padding-top: 24px;
        padding-bottom: 60px;
    }
    .hero-container {
        display: flex;
        gap: 24px;
    }
    .hero-main {
        flex: 1 1 65%;
    }
    .hero-sidebar {
        flex: 1 1 35%;
        max-width: 330px;
    }
    .back-link {
        color: var(--c-primary);
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 24px;
        display: block;
    }
    .hero-title {
        font-family: var(--font-heading);
        font-size: 32px;
        color: var(--c-dark-blue);
        margin: 0 0 0 0;
    }
    .hero-subtitle {
        font-size: 24px;
        color: var(--c-dark-blue);
        margin: 0 0 19px 0;
    }
    .hero-gallery {
        position: relative;
        margin-bottom: 45px;
    }
    .hero-image {
        width: 100%;
        height: auto;
        display: block;
        border: 1px solid #f5f5f5;
    }
    .hero-pagination {
        position: absolute;
        bottom: -28px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 30px;
    }
    .hero-description {
        font-size: 20px;
        line-height: 1.5;
        margin: 0 0 25px 0;
    }
    .hero-description .view-more {
        color: #25abff;
        text-decoration: underline;
    }
    .pricing-box {
        margin-bottom: 24px;
    }
    .price-info {
        font-size: 20px;
        font-weight: 700;
        margin: 0;
    }
    .units-info {
        font-size: 16px;
        font-weight: 500;
        margin: 5px 0 0 0;
    }
    .view-properties-btn {
        width: 100%;
        font-size: 16px;
        padding: 16px;
    }
    .sidebar-links {
        display: flex;
        justify-content: space-between;
        margin-top: 40px;
        padding: 0 20px;
    }
    .sidebar-links a {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        font-weight: 700;
        color: var(--c-primary);
    }
    .sidebar-divider {
        border: none;
        height: 1px;
        background-color: var(--c-border);
        margin: 20px 0 44px 0;
    }
    .agent-title {
        font-size: 14px;
        font-weight: 500;
        margin: 0 0 10px 0;
    }
    .agent-cards-container {
        display: flex;
        gap: 20px;
    }
    .agent-card {
        flex: 1;
        border-radius: 5px;
        overflow: hidden;
    }
    .agent-photo {
        width: 100%;
        display: block;
    }
    .agent-details {
        background-color: var(--c-dark-blue);
        color: var(--c-text-light);
        padding: 14px;
    }
    .agent-details hr {
        border: none;
        height: 1px;
        background-color: #415991;
        margin: 12px 0;
    }
    .agent-name {
        font-size: 10px;
        font-weight: 600;
        line-height: 1.2;
        margin: 0;
    }
    .agent-company {
        font-weight: 400;
    }
    .agent-contact {
        font-size: 12px;
        font-weight: 500;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .agent-psra {
        font-size: 10px;
        font-weight: 300;
        margin: 0;
    }
    @media (max-width: 992px) {
        .hero-container {
            flex-direction: column;
        }
        .hero-sidebar {
            max-width: 100%;
        }
        .agent-cards-container {
            justify-content: space-around;
        }
    }

/* CSS for section section:listings */
#listings {
        padding-bottom: 60px;
    }
    .section-divider {
        border: none;
        height: 1px;
        background-color: var(--c-border);
        margin: 30px 0 30px 0;
    }
    .sort-bar {
        margin-bottom: 30px;
    }
    .sort-label {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 8px;
        display: block;
    }
    .sort-select {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: 1px solid var(--c-text-dark);
        border-radius: 5px;
        padding: 10px 20px;
        max-width: 508px;
        cursor: pointer;
    }
    .sort-select span {
        font-size: 14px;
        font-weight: 500;
    }
    .property-list {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }
    .property-card {
        display: flex;
        gap: 24px;
    }
    .property-image-container {
        flex: 0 0 50%;
        position: relative;
    }
    .property-image {
        width: 100%;
        height: auto;
        display: block;
    }
    .property-controls {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .arrow-btn {
        background: none;
        border: none;
        cursor: pointer;
    }
    .dots {
        display: flex;
        gap: 10px;
    }
    .property-info {
        flex: 1 1 50%;
    }
    .property-title {
        font-family: var(--font-heading);
        font-size: 24px;
        color: var(--c-dark-blue);
        margin: 0 0 24px 0;
    }
    .property-description {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.5;
        margin: 0 0 24px 0;
    }
    .property-features {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 24px;
    }
    .feature-item {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .feature-item span {
        font-size: 16px;
        font-weight: 700;
        color: var(--c-dark-blue);
    }
    .property-price {
        font-size: 24px;
        font-weight: 700;
        margin: 0 0 24px 0;
    }
    @media (max-width: 992px) {
        .property-card {
            flex-direction: column;
        }
        .property-list {
            gap: 40px;
        }
    }

/* CSS for section section:brands */
#brands {
        background-color: var(--c-medium-blue);
        padding: 40px 0;
    }
    .brands-container {
        max-width: 1728px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .brands-title {
        font-family: var(--font-heading);
        font-size: 20px;
        color: var(--c-text-light);
        text-align: center;
        margin: 0 0 40px 0;
        font-weight: 400;
    }
    .logos-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        gap: 30px;
    }
    .logos-container img {
        max-height: 40px;
        object-fit: contain;
    }

/* CSS for section section:footer */
#footer {
        position: relative;
    }
    .footer-main {
        background-color: var(--c-dark-blue);
        color: var(--c-text-light);
        padding: 60px 0;
        position: relative;
    }
    .footer-main-container {
        display: block;
    }
    .footer-column {
        flex: 1;
    }

.footer-block.row {
    width: 100%;
    display: flex;
}

    .footer-title {
        font-size: 18px;
        font-weight: 600;
        margin: 0 0 20px 0;
    }
    .footer-title .highlight {
        color: var(--c-primary);
    }
    .register-info ul {
        list-style-image: url('https://via.placeholder.com/16/FFFFFF/000000?text=+'); /* Placeholder for checkmark */
        padding-left: 20px;
    }
    .register-info li {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 1.4;
    }
    .sitemap ul, .property-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .sitemap li, .property-links li {
        margin-bottom: 10px;
    }
    .sitemap a, .property-links a, .property-links p {
        font-size: 14px;
    }
    .social-icons {
        display: flex;
        gap: 15px;
        margin-top: 15px;
    }
    .footer-bg-image {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 68%;
        max-width: 1174px;
        z-index: 1;
    }
    .footer-bottom {
        background-color: var(--c-primary);
        color: var(--c-text-light);
        text-align: center;
        padding: 18px 0;
        font-size: 14px;
        font-weight: 500;
    }
    .footer-bottom p {
        margin: 0;
    }

    @media (max-width: 992px) {

        .footer-bg-image {
            display: none;
        }
    }
	/* CSS for section section:dashboard */
.dashboard-container {
  max-width: 1384px;
  margin: 0 auto;
  padding: 0 20px; /* Add some padding for smaller screens */
}

/* .dashboard-header {
  border-top: 1px solid var(--color-border);
  padding-top: 22px; /* y(-52) - y(-74)
}
*/

.main-nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav-link {
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.22;
  color: var(--color-text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-nav-link:hover {
  color: var(--color-primary);
}

.main-nav-link.active {
  color: var(--color-secondary);
  font-weight: 600;
}

.main-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85px;
  height: 4px;
  background-color: var(--color-secondary);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px; /* y(12) - y(-52+24) */
}

.filter-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  padding: 0 16px;
  border: none;
  background-color: var(--color-bg-grey);
  color: var(--color-text-dark);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.22;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.filter-tab:nth-child(1) {
  width: auto;
  border-radius: 16px;
}
.filter-tab:nth-child(2) {
  width: auto;
  border-radius: 16px;
}
.filter-tab:nth-child(3) {
  width: auto;
  border-radius: 30px;
}
.filter-tab:nth-child(4) {
  width: auto;
  border-radius: 30px;
}

.filter-tab.active {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  font-weight: 600;
}

.content-area {
    margin-top: 30px;
}

.dashboard-content {
    padding-top: 40px;
}

.content-title {
  margin: 0 0 45px 0; /* bottom margin: y(194) - y(114+35) */
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.36;
  color: var(--color-primary);
}

.content-divider {
  border: 0;
  height: 1px;
  background-color: var(--color-border);
  margin: 0;
}

.dashboard-container.account-type-purchaser .property-list {
    margin-top: 50px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .main-nav-list {
    gap: 20px;
  }
  .filter-tabs {
    gap: 12px;
  }
  .filter-tab {
    /* Allow tabs to shrink and grow */
    width: auto;
    flex-grow: 1;
  }
  .filter-tab:nth-child(n) {
    width: auto; /* Override fixed widths */
  }
}

@media (max-width: 480px) {
  .dashboard-header {
    padding-top: 16px;
  }
  .main-nav-list {
    justify-content: space-around;
    gap: 10px;
  }
  .main-nav-link {
    font-size: 14px;
    padding-bottom: 10px;
  }
  .filter-tabs {
    margin-top: 24px;
  }
  .content-area {
    margin-top: 40px;
  }
  .content-title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.dashboard-section {
    min-height: 100vh;
    background-color: #f9fafb;
    padding: 40px 0;
}

/* Only the CSS actually being used */
.status-card {
    width: 100%;
    border: 1px solid #c5c5c5;
    border-radius: 5px;
    padding: 15px 24px 19px;
}

.status-title {
    color: #c5c5c5;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.22; /* 19.5px */
    margin: 0 0 7px 0;
}

.status-details {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.status-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 4px; /* Aligns icon with the first line of text */
}

.status-description {
    color: #000000;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    margin: 0;
}

@media (max-width: 393px) {
    .status-card {
        width: calc(100% - 40px);
    }
}

/* Loading Spinner Styles */
.load-spinner-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 9999;
}

.center-spinner-parent {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.load-spinner {
    width: 60px;
    height: 60px;
    position: relative;
}

.shape {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--c-primary);
    animation: spin 1.5s infinite ease-in-out;
}

.shape-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.shape-2 {
    top: 0;
    right: 0;
    animation-delay: 0.2s;
}

.shape-3 {
    bottom: 0;
    right: 0;
    animation-delay: 0.4s;
}

.shape-4 {
    bottom: 0;
    left: 0;
    animation-delay: 0.6s;
}

@keyframes spin {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}