        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-bg: #f8f9fa;
            --dark-bg: #2c3e50;
            --sidebar-width: 280px;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
            color: #333;
            overflow-x: hidden;
        }
        .section{
            display: none;
        }
        h3{
            text-align: left;
        }
        
        /* Top Header Styles */
        .top-header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1030;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .top-bar {
            padding: 12px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #eee;
        }
        
        .logo-text {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .version-badge {
            background-color: var(--secondary-color);
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        /* Sidebar Styles */
        .doc-sidebar {
            position: fixed;
            top: 70px;
            left: 0;
            width: var(--sidebar-width);
            height: calc(100vh - 70px);
            background-color: white;
            border-right: 1px solid #eee;
            overflow-y: auto;
            transition: transform 0.3s ease;
            z-index: 1020;
            box-shadow: 2px 0 10px rgba(0,0,0,0.05);
        }
        
        .sidebar-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .nav-item {
            margin-bottom: 5px;
        }
        
        .nav-link {
            color: #555;
            padding: 10px 20px;
            border-left: 3px solid transparent;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-color);
            background-color: rgba(52, 152, 219, 0.05);
            border-left-color: var(--secondary-color);
        }
        
        .nav-link .toggle-icon {
            font-size: 12px;
            transition: transform 0.3s;
        }
        
        .nav-link.collapsed .toggle-icon {
            transform: rotate(-90deg);
        }
        
        .nav-submenu {
            padding-left: 30px;
            background-color: rgba(0,0,0,0.02);
        }
        
        .nav-submenu .nav-link {
            padding: 8px 20px;
            font-size: 14px;
            border-left: 2px solid #ddd;
        }
        
        .nav-section-title {
            padding: 15px 20px 5px;
            font-size: 12px;
            text-transform: uppercase;
            color: #888;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        /* Main Content Styles */
        .doc-content {
            margin-left: var(--sidebar-width);
            margin-top: 70px;
            padding: 30px;
            transition: margin-left 0.3s ease;
        }
        
        /* Hero Section */
        .hero-section {
            position: relative;
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 20px;
        }
        
        .logo-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .divider {
            width: 100px;
            height: 3px;
            background-color: white;
            margin: 15px auto;
        }
        
        .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        /* Content Sections */
        .content-header {
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .content-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .content-subtitle {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
        }
        
        .doc-section {
            margin-bottom: 50px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }
        
        .section-title {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .section-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            margin-right: 15px;
            font-weight: bold;
        }
        
        .section-content {
            padding-left: 55px;
        }
        
        .section-content h3 {
            color: var(--primary-color);
            margin-top: 25px;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .section-content p {
            line-height: 1.7;
            margin-bottom: 15px;
            color: #555;
        }
        
        /* Info Box */
        .info-box {
            background-color: #f8f9fa;
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            border-radius: 0 5px 5px 0;
            margin: 25px 0;
        }
        
        .info-box-title {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .img-box {
            margin: 20px 0;
            text-align: center;
        }
        
        .img-box img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .img-box h3 {
            margin-bottom: 10px;
            color: var(--primary-color);
            font-size: 1.1rem;
        }
        
        /* Navigation Menu */
        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 25px;
        }
        
        .nav-menu li a {
            color: #555;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }
        
        .nav-menu li a:hover {
            color: var(--secondary-color);
        }
        
        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary-color);
            cursor: pointer;
        }
        
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 1040;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .doc-sidebar {
                transform: translateX(-100%);
                top: 0;
                height: 100vh;
                width: 280px;
                padding-top: 70px;
            }
            
            .doc-sidebar.active {
                transform: translateX(0);
            }
            
            .doc-content {
                margin-left: 0;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .mobile-nav-overlay.active {
                display: block;
            }
            
            .hero-section {
                height: 250px;
            }
            
            .logo-title {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                height: 200px;
            }
            
            .logo-title {
                font-size: 2.2rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
            
            .content-title {
                font-size: 2rem;
            }
            
            .doc-content {
                padding: 20px 15px;
            }
            
            .section-content {
                padding-left: 0;
            }
            
            .nav-menu {
                flex-direction: column;
                gap: 15px;
                background-color: white;
                position: fixed;
                top: 70px;
                right: 0;
                width: 250px;
                height: calc(100vh - 70px);
                padding: 20px;
                transform: translateX(100%);
                transition: transform 0.3s ease;
                z-index: 1035;
                box-shadow: -2px 0 10px rgba(0,0,0,0.1);
            }
            
            .nav-menu.active {
                transform: translateX(0);
            }
            
            .menu-block {
                position: relative;
            }
        }
        
        @media (max-width: 576px) {
            .hero-section {
                height: 180px;
            }
            
            .logo-title {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .section-icon {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
            
            .top-bar {
                padding: 10px 15px;
            }
        }
        
        /* Code styling */
        pre {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 15px;
            border-radius: 5px;
            overflow-x: auto;
            margin: 20px 0;
            font-size: 14px;
        }
        
        code {
            background-color: #f1f1f1;
            padding: 2px 5px;
            border-radius: 3px;
            font-family: 'Courier New', monospace;
        }
        
        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            z-index: 1000;
            transition: all 0.3s;
        }
        
        .back-to-top:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Scrollbar styling */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }
        /* Desktop XL: ≥1200px */
@media (min-width: 1200px) {
    .doc-content {
        max-width: 1200px;
        margin-left: var(--sidebar-width);
    }
    .hero-section {
        height: 350px;
    }
}

/* Laptop LG: 992px–1199px */
@media (max-width: 1199px) and (min-width: 992px) {
    .doc-content {
        margin-left: var(--sidebar-width);
    }
    .hero-section {
        height: 300px;
    }
}

/* Tablet MD: 768px–991px */
@media (max-width: 991px) and (min-width: 768px) {
    .doc-sidebar {
        transform: translateX(-100%);
        padding-top: 70px;
    }
    .doc-content {
        margin-left: 0;
        padding: 20px;
    }
    .hero-section {
        height: 240px;
    }
}

/* Mobile SM: <768px */
@media (max-width: 767px) {
    .hero-section {
        height: 200px;
    }
    .logo-title {
        font-size: 1.9rem;
    }
    .subtitle {
        font-size: 0.95rem;
    }
    .doc-content {
        padding: 15px;
    }
}

/* Base Sidebar (Desktop Default) */
.doc-sidebar {
    width: var(--sidebar-width);
    position: fixed;
    top: 70px;
    left: 0;
    height: calc(100vh - 70px);
    background: white;
    border-right: 1px solid #eee;
    box-shadow: 2px 0 8px rgba(0,0,0,0.05);
    overflow-y: auto;
    transition: transform 0.3s ease;
    z-index: 1025;
}

/* Desktop & Laptop Behavior ≥992px */
@media (min-width: 992px) {
    .doc-sidebar {
        transform: translateX(0);
    }
    .doc-content {
        margin-left: var(--sidebar-width);
    }
    .sidebar-header {
        display: none;
    }
}

/* Tablet Overlay Drawer (768px–991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .doc-sidebar {
        transform: translateX(-100%);
        top: 0;
        height: 100vh;
        width: 260px;
    }
    .doc-sidebar.active {
        transform: translateX(0);
    }
    .doc-content {
        margin-left: 0;
    }
    .sidebar-header {
        display: flex;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }
    .btn-close {
        margin-left: 80px;
        padding: 10px 19px;
        border: 1px solid black;
    }
    #menuToggle{
        display: none;
    }
}

/* Mobile Full Drawer <768px */
@media (max-width: 767px) {
    .doc-sidebar {
        transform: translateX(-100%);
        top: 0;
        height: 100vh;
        width: 260px;
    }
    .doc-sidebar.active {
        transform: translateX(0);
    }
    .doc-content {
        margin-left: 0;
    }
    .sidebar-header {
        display: flex;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }
        .btn-close {
        margin-left: 80px;
        padding: 10px 19px;
        border: 1px solid black;
    }
    
}

/* Mobile Overlay Background */
.mobile-nav-overlay {
    display: none;
}
.mobile-nav-overlay.active {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1020;
}


        .workflow-visualization {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .step-box {
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: #3498db;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-weight: bold;
        }

        .step-arrow {
            margin-top: 10px;
            color: #3498db;
            font-size: 24px;
        }

        .visual-diagram {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .diagram-row {
            display: flex;
            justify-content: center;
            margin: 20px 0;
        }

        .diagram-box {
            background: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            min-width: 300px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }

        .country-box { border-left: 4px solid #3498db; }
        .city-box { border-left: 4px solid #2ecc71; }
        .property-box { border-left: 4px solid #e74c3c; }
        .search-box { border-left: 4px solid #f39c12; }

        .arrow-down {
            margin-top: 15px;
            color: #3498db;
            font-size: 24px;
        }

        .feature-card {
            background: white;
            padding: 20px;
            border-radius: 8px;
            height: 100%;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .feature-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .search-flow {
            background: white;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .search-step {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
        }

        .step-content {
            flex-grow: 1;
            margin-left: 15px;
        }

        .language-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }

        .language-option {
            padding: 8px 15px;
            background: #e9ecef;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .language-option.active {
            background: #3498db;
            color: white;
        }

        .format-option {
            background: #f8f9fa;
            padding: 10px;
            margin-bottom: 10px;
            border-radius: 5px;
            border-left: 3px solid #3498db;
        }

         .logic-flow {
            background: white;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .flow-step {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #3498db;
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: #3498db;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }

        .step-content {
            flex-grow: 1;
            margin-left: 15px;
        }

        .step-arrow {
            margin: 0 15px;
            color: #3498db;
            font-size: 24px;
            flex-shrink: 0;
        }

        .hierarchy-visualization {
            background: white;
            padding: 30px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .hierarchy-level {
            display: flex;
            justify-content: center;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .level-box {
            background: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            min-width: 200px;
            margin: 0 10px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }

        .property-level {
            border-top: 4px solid #3498db;
            background: #e3f2fd;
        }

        .unit-level {
            border-top: 4px solid #2ecc71;
            background: #e8f5e9;
        }

        .tenant-level {
            border-top: 4px solid #f39c12;
            background: #fff3e0;
        }

        .arrow-down {
            margin-top: 10px;
            color: #3498db;
            font-size: 24px;
            width: 100%;
            text-align: center;
        }

        .status-flow {
            background: white;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .status-step {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin: 10px 0;
            text-align: center;
            position: relative;
        }

        .status-label {
            font-weight: bold;
            font-size: 16px;
            margin-bottom: 5px;
            padding: 5px 10px;
            border-radius: 4px;
            display: inline-block;
        }

        .draft .status-label { background: #6c757d; color: white; }
        .active .status-label { background: #28a745; color: white; }
        .maintenance .status-label { background: #ffc107; color: black; }
        .archived .status-label { background: #dc3545; color: white; }

        .status-arrow {
            position: absolute;
            right: -30px;
            top: 50%;
            transform: translateY(-50%);
            color: #3498db;
            font-size: 24px;
        }

        .status-branch {
            position: absolute;
            right: -30px;
            top: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .status-branch-container {
            display: flex;
            justify-content: space-around;
            margin-top: 20px;
        }

        .branch-up, .branch-down {
            color: #3498db;
            font-size: 24px;
        }

        .utility-flow {
            display: flex;
            align-items: center;
            justify-content: space-around;
            background: white;
            padding: 30px;
            border-radius: 8px;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .utility-source, .utility-link, .utility-billing {
            text-align: center;
            padding: 20px;
            min-width: 200px;
        }

        .source-icon, .link-icon, .billing-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .flow-arrow {
            color: #3498db;
            font-size: 24px;
            margin: 0 20px;
        }

        .billing-options {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 15px;
        }

        .option {
            padding: 8px 15px;
            background: #e9ecef;
            border-radius: 4px;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .utility-flow {
                flex-direction: column;
            }
            
            .flow-arrow {
                transform: rotate(90deg);
                margin: 20px 0;
            }
            
            .hierarchy-level {
                flex-direction: column;
                align-items: center;
            }
            
            .level-box {
                margin: 10px 0;
            }
        }

        .logic-flow {
            background: white;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .flow-step {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #3498db;
        }

        .step-number {
            width: 35px;
            height: 35px;
            background: #3498db;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }

        .step-content {
            flex-grow: 1;
            margin-left: 15px;
        }

        .step-arrow {
            margin: 0 15px;
            color: #3498db;
            font-size: 20px;
            flex-shrink: 0;
        }


        .permissions-grid {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            margin: 20px 0;
        }

        .permission-row {
            display: flex;
            border-bottom: 1px solid #dee2e6;
        }

        .permission-row.header {
            background: #343a40;
            color: white;
            font-weight: bold;
        }

        .permission-action {
            flex: 2;
            padding: 12px 15px;
        }

        .permission-role {
            flex: 1;
            padding: 12px 15px;
            text-align: center;
            border-left: 1px solid #dee2e6;
        }

        .Property Manager { background: #e3f2fd; color: #2c3e50; }
        .owner { background: #e8f5e9; color: #2c3e50; }
        .tenant { background: #fff3e0; color: #2c3e50; }

        .allowed { color: #28a745; font-weight: bold; }
        .denied { color: #dc3545; font-weight: bold; }
        .required { color: #ffc107; font-weight: bold; }
        .request { color: #17a2b8; font-weight: bold; }

        .status-flow {
            background: white;
            padding: 30px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .status-path {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .status-node {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            min-width: 120px;
            border-top: 4px solid #6c757d;
        }

        .draft { border-top-color: #6c757d; }
        .pending { border-top-color: #ffc107; }
        .active { border-top-color: #28a745; }
        .expired { border-top-color: #17a2b8; }

        .node-label {
            font-weight: bold;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .node-desc {
            font-size: 12px;
            color: #666;
        }

        .path-arrow {
            color: #3498db;
            font-size: 24px;
            margin: 0 10px;
        }

        .status-branches {
            display: flex;
            justify-content: space-around;
            margin-top: 20px;
        }

        .branch {
            text-align: center;
        }

        .branch-label {
            font-size: 12px;
            color: #666;
            margin-bottom: 5px;
        }

        .branch-arrow {
            color: #3498db;
            font-size: 24px;
            margin: 5px 0;
        }

        .branch-node {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            min-width: 100px;
        }

        .renewal .branch-node { border-top: 4px solid #2ecc71; }
        .terminated .branch-node { border-top: 4px solid #e74c3c; }

        .logic-rules {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
        }

        .logic-rules ul {
            margin: 10px 0 0 20px;
            padding: 0;
        }

        .integration-flow {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .integration-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-width: 150px;
        }

        .step-icon {
            font-size: 40px;
            margin-bottom: 10px;
        }

        .step-connector {
            color: #3498db;
            font-size: 24px;
            margin: 0 20px;
        }

        .payment-logic {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }

        .logic-points {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }

        .logic-point {
            display: flex;
            align-items: center;
            background: white;
            padding: 10px 15px;
            border-radius: 6px;
            border-left: 3px solid #3498db;
        }

        .point-icon {
            width: 25px;
            height: 25px;
            background: #3498db;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-size: 12px;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .permission-row {
                flex-direction: column;
            }
            
            .permission-action, .permission-role {
                width: 100%;
                border-left: none;
                border-bottom: 1px solid #dee2e6;
            }
            
            .status-path {
                flex-direction: column;
            }
            
            .path-arrow {
                transform: rotate(90deg);
                margin: 10px 0;
            }
            
            .integration-flow {
                flex-direction: column;
            }
            
            .step-connector {
                transform: rotate(90deg);
                margin: 10px 0;
            }
        }