﻿body {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    -webkit-font-smoothing: antialiased !important; /* For Chrome, Safari, Edge, Opera */
    -moz-osx-font-smoothing: grayscale !important; /* For Firefox on macOS */
    font-smoothing: antialiased !important;  /* Non-standard, for broader compatibility */
}
.bi-color 
{
    color: #38569e;
}
.bi-background
{
    background-color: #38569e;
}
.no-border {
    border:0 !important;
}
.no-box-shadow {
    box-shadow :none;
}
.font-bolder {
    font-weight:900;
}

.top-nav {
    background: #1a1a1a;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #2a2a2a;
}

.go-back {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

    .go-back::before {
        content: '←';
        font-size: 18px;
    }

.loader-info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #999;
}

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

.author-avatar {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: #000;
}

.stats {
    display: flex;
    gap: 15px;
}

.stat-item::before {
    margin-right: 4px;
}

/* Main Content Area */
.main-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Left Panel - Preview */
.preview-panel {
    flex: 1;
    background: #e8e8e8;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #2a2a2a;
}

.preview-header {
    background: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.color-display {
    font-family: monospace;
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.theme-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-switch {
    width: 40px;
    height: 22px;
    background: #ddd;
    border-radius: 11px;
    position: relative;
    cursor: pointer;
}

    .toggle-switch::after {
        content: '';
        position: absolute;
        width: 18px;
        height: 18px;
        background: #fff;
        border-radius: 50%;
        top: 2px;
        left: 2px;
        transition: 0.3s;
    }

.preview-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.status-box {
    background: transparent;
}

.status-label {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.status-text {
    font-size: 16px;
    color: #333;
}

/* Right Panel - Code */
.code-panel {
    width: 50%;
    background: #1e1e1e;
    display: flex;
    flex-direction: column;
}

.code-tabs {
    display: flex;
    background: #2a2a2a;
    border-bottom: 1px solid #3a3a3a;
}

.code-tab {
    padding: 12px 20px;
    font-size: 13px;
    color: #999;
    cursor: pointer;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .code-tab.active {
        color: #fff;
        background: #1e1e1e;
    }

    .code-tab::before {
        font-size: 16px;
    }

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #2a2a2a;
}

.code-title {
    font-size: 13px;
    color: #d4a948;
    font-family: 'Courier New', monospace;
}

.copy-btn {
    background: transparent;
    border: 1px solid #3a3a3a;
    color: #999;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .copy-btn:hover {
        background: #2a2a2a;
        color: #fff;
    }

.code-editor {
    flex: 1;
    overflow: auto;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
}

.code-line {
    display: flex;
    gap: 20px;
}

.line-number {
    color: #666;
    text-align: right;
    min-width: 30px;
    user-select: none;
}

.line-content {
    color: #d4d4d4;
}

.code-footer {
    padding: 10px 20px;
    background: #2a2a2a;
    border-top: 1px solid #3a3a3a;
    font-size: 12px;
    color: #d4a948;
}

/* Bottom Toolbar */
.bottom-toolbar {
    background: #1a1a1a;
    padding: 15px 20px;
    display: flex;
    gap: 15px;
    border-top: 1px solid #2a2a2a;
}

.toolbar-btn {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

    .toolbar-btn:hover {
        background: #3a3a3a;
    }

    .toolbar-btn.primary {
        background: #0066ff;
        border-color: #0066ff;
    }

        .toolbar-btn.primary:hover {
            background: #0052cc;
        }

.hidden {
    display:none !important;
}

.custom-header {
    background: linear-gradient(135deg, #3b5998 0%, #5975b8 100%) !important;
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 2.2rem;
    font-weight: bold;
    color: white !important;
    text-transform: lowercase;
    letter-spacing: -1px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link:hover {
        color: rgba(255, 255, 255, 1) !important;
    }

.search-container {
    position: relative;
    max-width: 320px;
}

.search-input {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    color: white;
    width: 100%;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

    .search-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .search-input:focus {
        background-color: rgba(255, 255, 255, 0.3);
        outline: none;
        color: white;
    }

.login-btn {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .login-btn:hover {
        color: white !important;
    }

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .search-container {
        max-width: 100%;
        margin: 15px 0;
    }

    .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .login-btn {
        display: block;
        padding: 10px 0;
    }
}
.float-right {
    float:right !important
}

.theme-showcase-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.theme-showcase-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.theme-showcase-container {
    max-width: 1200px;
    width: 100%;
}

.theme-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.theme-showcase-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ccc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .theme-showcase-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

.theme-showcase-preview {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    position: relative;
    overflow: hidden;
}

    .theme-showcase-preview img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.theme-showcase-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #667eea;
}

.theme-showcase-content {
    padding: 25px;
}

.theme-showcase-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.theme-showcase-description {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 15px;
}

.theme-showcase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.theme-showcase-tag {
    background: #edf2f7;
    color: #4a5568;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.theme-showcase-actions {
    display: flex;
    gap: 10px;
}

.theme-showcase-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.theme-showcase-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

    .theme-showcase-btn-primary:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    }

.theme-showcase-btn-secondary {
    background: #edf2f7;
    color: #4a5568;
}

    .theme-showcase-btn-secondary:hover {
        background: #e2e8f0;
    }

.theme-showcase-btn-code {
    background: #2d3748;
    color: white;
}

    .theme-showcase-btn-code:hover {
        background: #1a202c;
    }

/* Icon styles using Unicode symbols */
.theme-showcase-icon::before {
    font-size: 16px;
}

.theme-showcase-icon-preview::before {
    content: "👁";
}

.theme-showcase-icon-download::before {
    content: "⬇";
}

.theme-showcase-icon-code::before {
    content: "< >";
}

@media (max-width: 768px) {
    .theme-showcase-grid {
        grid-template-columns: 1fr;
    }

    .theme-showcase-actions {
        flex-direction: column;
    }
}


.nav-sidebar {
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    border-right: 1px solid #dddfe2;
    overflow-y: auto;
    padding-top:10px
}

.menu-list {
    list-style: none;
    padding:0;
}

.menu-item {
    position: relative;
}

.menu-link {
    display: flex;
    align-items: center;
    padding: 8px ;
    color: #385898;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.2s;
    cursor: pointer;
   
}

    .menu-link:hover {
        background-color: #f6f7f9;
    }

    .menu-link.active-item {
        background-color: #e8edf4;
    }

.icon-container {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-svg {
    width: 20px;
    height: 20px;
    fill: #4267b2;
}

.menu-text {
    flex: 1;
}

.divider-line {
    height: 1px;
    background-color: #dddfe2;
    margin: 8px 0;
}

.content-area {
    margin-left: 180px;
    padding: 20px;
}

.header-text {
    color: #1c1e21;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.content-box {
    background-color: #fff;
    border: 1px solid #dddfe2;
    border-radius: 3px;
    padding: 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}


.cards-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

/* Status Update Card */
.status-card {
    background-color: #fff;
    border: 1px solid #dddfe2;
    border-radius: 3px;
    margin-bottom: 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.status-header {
    padding: 12px 12px 0 12px;
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: #385898;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

    .user-name:hover {
        text-decoration: underline;
    }

.post-timestamp {
    font-size: 12px;
    color: #90949c;
}

.status-content {
    padding: 12px;
    font-size: 14px;
    color: #1c1e21;
    line-height: 1.38;
}

.status-image {
    width: 100%;
    display: block;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.status-stats {
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    font-size: 12px;
    color: #606770;
}

.likes-count {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.like-icon {
    width: 18px;
    height: 18px;
    background-color: #4267b2;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    margin-right: 6px;
}

.comments-shares {
    cursor: pointer;
}

    .comments-shares:hover {
        text-decoration: underline;
    }

.status-actions {
    display: flex;
    padding: 4px 12px;
}

.action-button {
    flex: 1;
    padding: 8px;
    background: none;
    border: none;
    color: #606770;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

    .action-button:hover {
        background-color: #f6f7f9;
    }

.action-icon {
    font-size: 16px;
}

/* Photo Card */
.photo-card {
    background-color: #fff;
    border: 1px solid #dddfe2;
    border-radius: 3px;
    margin-bottom: 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.photo-header {
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
}

.photo-title {
    font-size: 14px;
    font-weight: 600;
    color: #1c1e21;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background-color: #e5e5e5;
}

.photo-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
}

    .photo-item:hover {
        opacity: 0.9;
    }

/* Event Card */
.event-card {
    background-color: #fff;
    border: 1px solid #dddfe2;
    border-radius: 3px;
    margin-bottom: 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.event-banner {
    height: 150px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.event-details {
    padding: 12px;
}

.event-date {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #606770;
    margin-bottom: 8px;
}

.event-date-icon {
    width: 30px;
    height: 30px;
    background-color: #f6f7f9;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-weight: 600;
    color: #4267b2;
}

.event-title {
    font-size: 16px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 6px;
}

.event-location {
    font-size: 13px;
    color: #606770;
    margin-bottom: 12px;
}

.event-actions {
    display: flex;
    gap: 8px;
    border-top: 1px solid #e5e5e5;
    padding: 12px;
}

.event-btn {
    flex: 1;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.2s;
    border: 1px solid #ccd0d5;
    background-color: #f6f7f9;
    color: #4b4f56;
}

    .event-btn:hover {
        background-color: #e9ebee;
    }

.event-btn-primary {
    background-color: #4267b2;
    color: #fff;
    border-color: #4267b2;
}

    .event-btn-primary:hover {
        background-color: #365899;
    }

/* Friend Suggestion Card */
.friend-card {
    background-color: #fff;
    border: 1px solid #dddfe2;
    border-radius: 3px;
    margin-bottom: 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.friend-photo {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
    font-weight: 600;
}

.friend-info {
    padding: 12px;
}

.friend-name {
    font-size: 15px;
    font-weight: 600;
    color: #385898;
    margin-bottom: 4px;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

    .friend-name:hover {
        text-decoration: underline;
    }

.mutual-friends {
    font-size: 12px;
    color: #606770;
    margin-bottom: 12px;
}

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

.friend-btn {
    flex: 1;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.friend-btn-add {
    background-color: #4267b2;
    color: #fff;
    border: 1px solid #4267b2;
}

    .friend-btn-add:hover {
        background-color: #365899;
    }

.friend-btn-remove {
    background-color: #f6f7f9;
    color: #4b4f56;
    border: 1px solid #ccd0d5;
}

    .friend-btn-remove:hover {
        background-color: #e9ebee;
    }

/* Page Card */
.page-card {
    background-color: #fff;
    border: 1px solid #dddfe2;
    border-radius: 3px;
    margin-bottom: 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.page-cover {
    height: 120px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    position: relative;
}

.page-avatar {
    width: 80px;
    height: 80px;
    border-radius: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 3px solid #fff;
    position: absolute;
    bottom: -25px;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

.page-content {
    padding: 35px 12px 12px 12px;
}

.page-name {
    font-size: 16px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 4px;
}

.page-category {
    font-size: 12px;
    color: #606770;
    margin-bottom: 8px;
}

.page-likes {
    font-size: 12px;
    color: #606770;
    margin-bottom: 12px;
}

.page-like-btn {
    width: 100%;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    background-color: #4267b2;
    color: #fff;
    border: 1px solid #4267b2;
    transition: background-color 0.2s;
}

    .page-like-btn:hover {
        background-color: #365899;
    }

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 15px;
    padding: 0 12px;
}

.design-kit-body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #e9ebee;
    padding: 30px;
    color: #1c1e21;
}

.kit-container {
    max-width: 1200px;
    margin: 0 auto;
}

.kit-section {
    background-color: #fff;
    border: 1px solid #dddfe2;
    border-radius: 3px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.section-heading {
    font-size: 20px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.component-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.component-label {
    font-size: 13px;
    color: #606770;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Primary Buttons */
.fb-btn-primary {
    background-color: #4267b2;
    color: #fff;
    border: 1px solid #4267b2;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    display: inline-block;
}

    .fb-btn-primary:hover {
        background-color: #365899;
        border-color: #365899;
    }

    .fb-btn-primary:active {
        background-color: #29487d;
        border-color: #29487d;
    }

/* Secondary Buttons */
.fb-btn-secondary {
    background-color: #f6f7f9;
    color: #4b4f56;
    border: 1px solid #ccd0d5;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    display: inline-block;
}

    .fb-btn-secondary:hover {
        background-color: #e9ebee;
    }

    .fb-btn-secondary:active {
        background-color: #dddfe2;
    }

/* Success Button */
.fb-btn-success {
    background-color: #42b72a;
    color: #fff;
    border: 1px solid #42b72a;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    display: inline-block;
}

    .fb-btn-success:hover {
        background-color: #36a420;
    }

/* Danger Button */
.fb-btn-danger {
    background-color: #fa3e3e;
    color: #fff;
    border: 1px solid #fa3e3e;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    display: inline-block;
}

    .fb-btn-danger:hover {
        background-color: #e02525;
    }

/* Link Button */
.fb-btn-link {
    background: none;
    color: #385898;
    border: none;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

    .fb-btn-link:hover {
        text-decoration: underline;
    }

/* Button Sizes */
.fb-btn-large {
    padding: 10px 20px;
    font-size: 15px;
}

.fb-btn-small {
    padding: 4px 8px;
    font-size: 11px;
}

/* Disabled State */
.fb-btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

    .fb-btn-disabled:hover {
        background-color: inherit;
    }

/* Alerts */
.fb-alert {
    padding: 12px 16px;
    border-radius: 3px;
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.5;
    position: relative;
}

.fb-alert-success {
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    color: #3c763d;
}

.fb-alert-info {
    background-color: #d9edf7;
    border: 1px solid #bce8f1;
    color: #31708f;
}

.fb-alert-warning {
    background-color: #fcf8e3;
    border: 1px solid #faebcc;
    color: #8a6d3b;
}

.fb-alert-error {
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    color: #a94442;
}

.fb-alert-neutral {
    background-color: #f6f7f9;
    border: 1px solid #dddfe2;
    color: #4b4f56;
}

.alert-close-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    color: inherit;
    cursor: pointer;
    opacity: 0.6;
    padding: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
}

    .alert-close-btn:hover {
        opacity: 1;
    }

/* Input Fields */
.fb-input {
    width: 100%;
    padding: 8px 10px;
    font-size: 13px;
    border: 1px solid #ccd0d5;
    border-radius: 2px;
    background-color: #fff;
    color: #1c1e21;
    font-family: inherit;
    transition: border-color 0.2s;
}

    .fb-input:focus {
        outline: none;
        border-color: #4267b2;
        box-shadow: 0 0 0 2px rgba(66, 103, 178, 0.1);
    }

    .fb-input::placeholder {
        color: #90949c;
    }

.input-wrapper {
    margin-bottom: 15px;
}

/* Textarea */
.fb-textarea {
    width: 100%;
    padding: 8px 10px;
    font-size: 13px;
    border: 1px solid #ccd0d5;
    border-radius: 2px;
    background-color: #fff;
    color: #1c1e21;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.2s;
}

    .fb-textarea:focus {
        outline: none;
        border-color: #4267b2;
        box-shadow: 0 0 0 2px rgba(66, 103, 178, 0.1);
    }

/* Checkbox */
.fb-checkbox-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.fb-checkbox {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    cursor: pointer;
}

.fb-checkbox-label {
    font-size: 13px;
    color: #1c1e21;
    cursor: pointer;
}

/* Select Dropdown */
.fb-select {
    width: 100%;
    padding: 8px 10px;
    font-size: 13px;
    border: 1px solid #ccd0d5;
    border-radius: 2px;
    background-color: #fff;
    color: #1c1e21;
    font-family: inherit;
    cursor: pointer;
}

    .fb-select:focus {
        outline: none;
        border-color: #4267b2;
    }

/* Cards */
.fb-card {
    background-color: #fff;
    border: 1px solid #dddfe2;
    border-radius: 3px;
    margin-bottom: 15px;
}

.fb-card-header {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
    font-weight: 600;
    font-size: 14px;
    color: #1c1e21;
}

.fb-card-body {
    padding: 16px;
    font-size: 13px;
    color: #4b4f56;
    line-height: 1.5;
}

.fb-card-footer {
    padding: 12px 16px;
    border-top: 1px solid #e5e5e5;
    background-color: #f6f7f9;
    font-size: 12px;
    color: #606770;
}

/* Badges */
.fb-badge {
    display: inline-block;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 2px;
    margin-right: 6px;
}

.fb-badge-primary {
    background-color: #4267b2;
    color: #fff;
}

.fb-badge-success {
    background-color: #42b72a;
    color: #fff;
}

.fb-badge-danger {
    background-color: #fa3e3e;
    color: #fff;
}

.fb-badge-neutral {
    background-color: #e4e6eb;
    color: #050505;
}

/* Navigation Tabs */
.fb-tabs {
    display: flex;
    border-bottom: 1px solid #dddfe2;
    margin-bottom: 20px;
}

.fb-tab {
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #606770;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    text-decoration: none;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

    .fb-tab:hover {
        background-color: #f6f7f9;
        color: #1c1e21;
    }

.fb-tab-active {
    color: #4267b2;
    border-bottom-color: #4267b2;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.top-nav {
    background-color: #3b5998;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

    .back-link:hover {
        opacity: 0.8;
    }

.back-arrow {
    font-size: 18px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #fff;
}

.loader-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-badge {
    background-color: #fff;
    color: #3b5998;
    padding: 4px 10px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 12px;
}

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

.stat-icon {
    font-size: 16px;
}

/* Main Layout */
.main-container {
    display: flex;
    height: calc(100vh - 48px);
}

/* Left Preview Panel */
.preview-panel {
    flex: 1;
    background-color: #e9ebee;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: auto;
}

.color-picker {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

    .color-swatch.active {
        border-color: #4267b2;
        box-shadow: 0 0 0 2px #4267b2;
    }

.theme-toggle {
    display: flex;
    gap: 8px;
    align-items: center;
}

.toggle-btn {
    width: 40px;
    height: 24px;
    background-color: #ccc;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .toggle-btn.active {
        background-color: #4267b2;
    }

.toggle-slider {
    width: 18px;
    height: 18px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-btn.active .toggle-slider {
    transform: translateX(16px);
}

/* Notification Card */
.mac-notification-card {
    width: 360px;
    background: linear-gradient(145deg, #5b6b8f 0%, #4a5a7d 100%);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.notification-header {
    display: flex;
    align-items: flex-start;
    padding: 16px 16px 12px 16px;
    gap: 12px;
}

.app-icon-container {
    width: 44px;
    height: 44px;
    background-color: #4267b2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.download-icon {
    width: 24px;
    height: 24px;
    color: #fff;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.3;
}

.notification-message {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.close-button {
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

    .close-button:hover {
        color: rgba(255, 255, 255, 1);
    }

.notification-actions {
    display: flex;
    gap: 8px;
    padding: 0 16px 16px 72px;
}

.action-btn {
    flex: 1;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: inherit;
}

.action-btn-primary {
    background-color: #4267b2;
    color: #fff;
    border-color: #4267b2;
}

    .action-btn-primary:hover {
        background-color: #365899;
        transform: translateY(-1px);
    }

.action-btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

    .action-btn-secondary:hover {
        background-color: rgba(255, 255, 255, 0.25);
    }

/* Right Code Panel */
.code-panel {
    width: 750px;
    background-color: #f6f7f9;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #dddfe2;
}

.code-tabs {
    display: flex;
    background-color: #fff;
    border-bottom: 1px solid #dddfe2;
}

.code-tab {
    padding: 12px 20px;
    background-color: transparent;
    border: none;
    color: #606770;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
    font-family: inherit;
    font-weight: 600;
}

    .code-tab:hover {
        background-color: #f6f7f9;
    }

    .code-tab.active {
        background-color: #f6f7f9;
        color: #4267b2;
        border-bottom: 3px solid #4267b2;
    }

.tab-icon {
    font-size: 14px;
}

.code-content {
    flex: 1;
    overflow: auto;
    padding: 20px;
    background-color: #fff;
}

.code-block {
    display: none;
}

    .code-block.active {
        display: block;
    }

.code-line {
    display: flex;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
    color: #1c1e21;
}

.line-number {
    width: 40px;
    text-align: right;
    padding-right: 16px;
    color: #90949c;
    user-select: none;
}

.line-content {
    flex: 1;
}

.code-tag {
    color: #4267b2;
}

.code-attr {
    color: #d73a49;
}

.code-string {
    color: #42b72a;
}

.code-comment {
    color: #606770;
}

.code-class {
    color: #e86502;
}

/* Bottom Action Bar */
.action-bar {
    background-color: #fff;
    padding: 12px 20px;
    display: flex;
    gap: 12px;
    align-items: center;
    border-top: 1px solid #dddfe2;
}

.action-bar-btn {
    padding: 8px 16px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-save {
    background-color: #fa3e3e;
    color: #fff;
    border: none;
}

    .btn-save:hover {
        background-color: #e02525;
    }

.btn-copy {
    background-color: #4267b2;
    color: #fff;
    border: none;
}

    .btn-copy:hover {
        background-color: #365899;
    }

.btn-export {
    background-color: #f6f7f9;
    color: #4b4f56;
    border: 1px solid #ccd0d5;
}

    .btn-export:hover {
        background-color: #e9ebee;
    }

.btn-react {
    background-color: #f6f7f9;
    color: #4b4f56;
    border: 1px solid #ccd0d5;
    margin-left: auto;
}

    .btn-react:hover {
        background-color: #e9ebee;
    }

.status-indicator {
    font-size: 12px;
    color: #fa3e3e;
    margin-left: auto;
    margin-right: 12px;
}
.typography-body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #e9ebee;
    padding: 30px;
    color: #1c1e21;
}

.typography-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-wrapper {
    background-color: #fff;
    border: 1px solid #dddfe2;
    border-radius: 3px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
}

/* Page Headers */
.page-header-primary {
    font-size: 28px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 8px;
    line-height: 1.2;
}

.page-header-secondary {
    font-size: 24px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 8px;
    line-height: 1.3;
}

.page-header-tertiary {
    font-size: 20px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 6px;
    line-height: 1.3;
}

/* Section Headers */
.section-header-large {
    font-size: 18px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 8px;
    line-height: 1.3;
}

.section-header-medium {
    font-size: 16px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 6px;
    line-height: 1.4;
}

.section-header-small {
    font-size: 14px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 6px;
    line-height: 1.4;
}

/* Sub Headers */
.subheader-primary {
    font-size: 13px;
    font-weight: 600;
    color: #606770;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subheader-secondary {
    font-size: 12px;
    font-weight: 600;
    color: #90949c;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.subheader-link {
    font-size: 13px;
    font-weight: 600;
    color: #385898;
    margin-bottom: 6px;
    cursor: pointer;
}

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

/* Body Text Variations */
.body-text-regular {
    font-size: 14px;
    color: #1c1e21;
    line-height: 1.38;
    margin-bottom: 12px;
}

.body-text-small {
    font-size: 13px;
    color: #4b4f56;
    line-height: 1.4;
    margin-bottom: 10px;
}

.body-text-tiny {
    font-size: 12px;
    color: #606770;
    line-height: 1.3;
    margin-bottom: 8px;
}

/* Meta Text */
.meta-text {
    font-size: 12px;
    color: #90949c;
    line-height: 1.3;
}

.meta-text-link {
    font-size: 12px;
    color: #385898;
    cursor: pointer;
}

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

/* Title with Description */
.title-group {
    margin-bottom: 20px;
}

.title-group-header {
    font-size: 20px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 4px;
}

.title-group-description {
    font-size: 13px;
    color: #606770;
    line-height: 1.4;
}

/* Pagination Styles */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding: 15px 0;
}

.pagination-btn {
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    background-color: #fff;
    border: 1px solid #ccd0d5;
    border-radius: 2px;
    color: #4b4f56;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

    .pagination-btn:hover {
        background-color: #f6f7f9;
        border-color: #4267b2;
        color: #4267b2;
    }

    .pagination-btn.active {
        background-color: #4267b2;
        border-color: #4267b2;
        color: #fff;
    }

    .pagination-btn.disabled {
        opacity: 0.5;
        cursor: not-allowed;
        pointer-events: none;
    }

.pagination-dots {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #90949c;
    font-weight: 600;
}

.pagination-info {
    font-size: 13px;
    color: #606770;
    margin-left: 12px;
}

/* Alternative Pagination - Compact */
.pagination-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
}

.pagination-compact-btn {
    padding: 6px 12px;
    background-color: #f6f7f9;
    border: 1px solid #ccd0d5;
    border-radius: 2px;
    color: #4b4f56;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

    .pagination-compact-btn:hover {
        background-color: #e9ebee;
    }

    .pagination-compact-btn.primary {
        background-color: #4267b2;
        border-color: #4267b2;
        color: #fff;
    }

        .pagination-compact-btn.primary:hover {
            background-color: #365899;
        }

.pagination-compact-text {
    font-size: 13px;
    color: #606770;
    font-weight: 600;
}

/* Load More Button */
.load-more-wrapper {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
}

.load-more-btn {
    padding: 8px 24px;
    background-color: #f6f7f9;
    border: 1px solid #ccd0d5;
    border-radius: 2px;
    color: #4b4f56;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

    .load-more-btn:hover {
        background-color: #e9ebee;
    }

/* Breadcrumbs */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.breadcrumb-link {
    color: #385898;
    text-decoration: none;
    font-weight: 600;
}

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

.breadcrumb-separator {
    color: #90949c;
    font-weight: 400;
}

.breadcrumb-current {
    color: #1c1e21;
    font-weight: 600;
}

/* Demo spacing */
.demo-spacer {
    height: 20px;
}

.demo-block {
    margin-bottom: 25px;
}

.label-text {
    font-size: 12px;
    color: #90949c;
    margin-bottom: 8px;
    font-weight: 600;
}

.subheader-body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #e9ebee;
    padding: 30px 20px;
    color: #1c1e21;
    min-height: 100vh;
}

.subheader-container {
    max-width: 850px;
    margin: 0 auto;
}

.demo-section {
    background-color: #fff;
    border: 1px solid #dddfe2;
    border-radius: 3px;
    padding: 0;
    margin-bottom: 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Sub Header Style 1: Simple with See All */
.subheader-style1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
}

.subheader-title {
    font-size: 16px;
    font-weight: 600;
    color: #1c1e21;
}

.subheader-action {
    font-size: 13px;
    font-weight: 600;
    color: #385898;
    text-decoration: none;
    cursor: pointer;
    transition: text-decoration 0.2s;
}

    .subheader-action:hover {
        text-decoration: underline;
    }

/* Sub Header Style 2: With Icon */
.subheader-style2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
    background-color: #f6f7f9;
}

.subheader-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.subheader-icon {
    width: 20px;
    height: 20px;
    color: #606770;
}

/* Sub Header Style 3: With Count Badge */
.subheader-style3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
}

.subheader-title-with-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.count-badge {
    background-color: #e4e6eb;
    color: #050505;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

    .count-badge.blue {
        background-color: #4267b2;
        color: #fff;
    }

    .count-badge.red {
        background-color: #fa3e3e;
        color: #fff;
    }

/* Sub Header Style 4: With Description */
.subheader-style4 {
    padding: 16px;
    border-bottom: 1px solid #e5e5e5;
}

.subheader-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.subheader-description {
    font-size: 13px;
    color: #606770;
    line-height: 1.4;
}

/* Sub Header Style 5: With Multiple Actions */
.subheader-style5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
}

.subheader-actions {
    display: flex;
    gap: 12px;
}

.action-link {
    font-size: 13px;
    font-weight: 600;
    color: #385898;
    text-decoration: none;
    cursor: pointer;
}

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

.action-separator {
    color: #dddfe2;
}

/* Sub Header Style 6: Tabbed Navigation */
.subheader-style6 {
    display: flex;
    border-bottom: 1px solid #dddfe2;
    background-color: #fff;
}

.tab-item {
    flex: 1;
    padding: 12px 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #606770;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: inherit;
}

    .tab-item:hover {
        background-color: #f6f7f9;
        color: #1c1e21;
    }

    .tab-item.active {
        color: #4267b2;
        border-bottom-color: #4267b2;
    }

/* Sub Header Style 7: With Filters */
.subheader-style7 {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
}

.filter-row {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.filter-chip {
    padding: 6px 12px;
    background-color: #f6f7f9;
    border: 1px solid #ccd0d5;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    color: #4b4f56;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

    .filter-chip:hover {
        background-color: #e9ebee;
    }

    .filter-chip.active {
        background-color: #4267b2;
        border-color: #4267b2;
        color: #fff;
    }

/* Sub Header Style 8: Collapsible */
.subheader-style8 {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .subheader-style8:hover {
        background-color: #f6f7f9;
    }

.subheader-collapsible {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chevron-icon {
    font-size: 18px;
    color: #90949c;
    transition: transform 0.3s;
}

    .chevron-icon.rotated {
        transform: rotate(180deg);
    }

/* Sub Header Style 9: With Button */
.subheader-style9 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
}

.subheader-btn {
    padding: 6px 12px;
    background-color: #4267b2;
    border: 1px solid #4267b2;
    border-radius: 2px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: inherit;
}

    .subheader-btn:hover {
        background-color: #365899;
    }

    .subheader-btn.secondary {
        background-color: #f6f7f9;
        border-color: #ccd0d5;
        color: #4b4f56;
    }

        .subheader-btn.secondary:hover {
            background-color: #e9ebee;
        }

/* Sub Header Style 10: With Search */
.subheader-style10 {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
}

.search-row {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.search-input {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #ccd0d5;
    border-radius: 2px;
    font-size: 13px;
    font-family: inherit;
    color: #1c1e21;
}

    .search-input:focus {
        outline: none;
        border-color: #4267b2;
    }

.search-btn {
    padding: 8px 16px;
    background-color: #f6f7f9;
    border: 1px solid #ccd0d5;
    border-radius: 2px;
    color: #4b4f56;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: inherit;
}

    .search-btn:hover {
        background-color: #e9ebee;
    }

/* Content placeholder */
.content-placeholder {
    padding: 20px 16px;
    font-size: 13px;
    color: #606770;
    text-align: center;
}

.section-label {
    font-size: 12px;
    color: #90949c;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    padding: 0 4px;
}