/* Premium CSS Design System for Konverter */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #e11d48;
    --primary-hover: #be123c;
    --primary-light: #ffe4e6;
    --bg-light: #f8fafc;
    --text-light: #0f172a;
    --text-muted-light: #64748b;
    --card-bg-light: rgba(255, 255, 255, 0.85);
    --border-light: #e2e8f0;
    
    --bg-dark: #090d16;
    --text-dark: #f8fafc;
    --text-muted-dark: #94a3b8;
    --card-bg-dark: rgba(15, 23, 42, 0.85);
    --border-dark: #1e293b;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px -15px rgba(225, 29, 72, 0.15);
    
    /* Active variables based on theme (defaults to dark theme by preference of visual wow) */
    --bg: var(--bg-dark);
    --text: var(--text-dark);
    --text-muted: var(--text-muted-dark);
    --card-bg: var(--card-bg-dark);
    --border: var(--border-dark);
    --header-bg: rgba(9, 13, 22, 0.8);
}

[data-theme="light"] {
    --bg: var(--bg-light);
    --text: var(--text-light);
    --text-muted: var(--text-muted-light);
    --card-bg: var(--card-bg-light);
    --border: var(--border-light);
    --header-bg: rgba(248, 250, 252, 0.8);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: var(--transition);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Premium Header and Navigation */
header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
}

.logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* UI Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-secondary:hover {
    background-color: var(--border);
}

.btn-text {
    background: none;
    color: var(--text-muted);
}

.btn-text:hover {
    color: var(--text);
}

/* Theme Switcher */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.theme-toggle:hover {
    background-color: var(--border);
}

/* Central Tools Grid */
.hero-section {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 2rem;
    padding: 0 1rem;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-section h1 span {
    background: linear-gradient(135deg, var(--primary), #fb7185);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.tools-filter {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    max-width: 1000px;
    margin: 2rem auto;
    overflow-x: auto;
    padding: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid var(--border);
    background: var(--card-bg);
    cursor: pointer;
    white-space: nowrap;
    color: var(--text-muted);
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.tools-grid {
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.tool-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #fb7185);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.tool-card:hover {
    transform: translateY(-8px);
    border-color: rgba(225, 29, 72, 0.3);
    box-shadow: var(--shadow-hover);
}

.tool-card:hover::before {
    transform: scaleX(1);
}

.tool-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: rgba(225, 29, 72, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.tool-title {
    font-size: 1.2rem;
    font-weight: 700;
}

.tool-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-grow: 1;
}

/* Glassmorphic Auth forms */
.auth-container {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

[data-theme="light"] .form-control {
    background: rgba(0, 0, 0, 0.02);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.2);
}

.form-error {
    color: var(--primary);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
}

/* Tool View Area */
.tool-workspace {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .tool-workspace {
        grid-template-columns: 3fr 1fr;
    }
}

.workspace-area {
    background: var(--card-bg);
    border: 2px dashed var(--border);
    border-radius: var(--radius-md);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.workspace-area.dragover {
    border-color: var(--primary);
    background: rgba(225, 29, 72, 0.05);
}

.upload-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

.workspace-sidebar {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-title {
    font-size: 1.15rem;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.75rem;
}

/* Drag and Drop File Preview Cards */
.file-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1.5rem;
    width: 100%;
    margin-top: 2rem;
}

.file-preview-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: grab;
    transition: var(--transition);
}

.file-preview-card:active {
    cursor: grabbing;
}

.file-preview-card .remove-file {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    border: none;
}

.file-preview-card .file-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.file-preview-card .file-name {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.file-preview-card .file-sort-controls {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.sort-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 0.65rem;
    cursor: pointer;
}

.sort-btn:hover {
    color: var(--text);
    background: var(--border);
}

/* Signature Canvas */
.signature-pad-container {
    width: 100%;
    max-width: 500px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 1rem;
}

#signature-canvas {
    display: block;
    background: white;
    cursor: crosshair;
}

/* Dashboard Layout */
.dashboard-layout {
    display: grid;
    grid-template-columns: 1fr;
    min-height: calc(100vh - 75px);
}

@media (min-width: 992px) {
    .dashboard-layout {
        grid-template-columns: 280px 1fr;
    }
}

.dashboard-sidebar {
    background: var(--card-bg);
    border-right: 1px solid var(--border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-menu-item a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--text-muted);
}

.sidebar-menu-item.active a, .sidebar-menu-item a:hover {
    background: rgba(225, 29, 72, 0.1);
    color: var(--primary);
}

.dashboard-content {
    padding: 3rem 2rem;
    overflow-y: auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stats-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.stats-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0.5rem 0;
}

/* Beautiful responsive tables */
.table-container {
    width: 100%;
    overflow-x: auto;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.data-table th, .data-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.data-table th {
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Custom workflows builder stylesheet */
.workflow-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
}

/* Badge System */
.badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
}

.badge-free { background: #64748b; color: white; }
.badge-premium { background: #f59e0b; color: black; }
.badge-team { background: #3b82f6; color: white; }
.badge-admin { background: #ef4444; color: white; }
.badge-editor { background: #10b981; color: white; }

/* Bounce and animations keyframes */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Alert box */
.alert {
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
}
.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}
.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

/* ==========================================================================
   Premium Split-Pane Auth System (Konverter Style)
   ========================================================================== */

/* Clean body layouts */
body.clean {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.clean footer {
    display: none !important;
}

body.clean header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent !important;
    border-bottom: none !important;
    backdrop-filter: none !important;
    padding: 1.5rem 2rem;
    z-index: 10;
}

body.clean header .nav-menu,
body.clean header .nav-actions a.btn {
    display: none !important;
}

body.clean header .nav-actions {
    gap: 0;
}

/* Auth split grid */
.auth {
    display: flex;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

.auth__form {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 3rem;
    background-color: var(--bg);
}

.auth__info {
    display: none; /* Hidden on mobile */
}

@media (min-width: 992px) {
    .auth__form {
        flex: 0 0 50%;
        max-width: 50%;
        padding-top: 3rem;
    }
    
    .auth__info {
        flex: 0 0 50%;
        max-width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5rem;
        background: radial-gradient(circle at top right, #1e293b, #090d16);
        border-left: 1px solid var(--border);
        position: relative;
        overflow: hidden;
    }
    
    [data-theme="light"] .auth__info {
        background: radial-gradient(circle at top right, #f1f5f9, #cbd5e1);
    }
}

.auth__box {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.auth__box .brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text);
    justify-content: center;
}

.auth__box .brand span {
    color: var(--primary);
}

.form__title {
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text);
}

/* Social SSO logins */
.social-auth {
    margin-bottom: 0.5rem;
}

.auth-clients {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 0;
    margin: 0;
}

.auth-clients .auth-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--card-bg);
    color: var(--text);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
}

.auth-clients .auth-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.auth-clients .auth-link.facebook {
    border-color: rgba(24, 119, 242, 0.3);
}
.auth-clients .auth-link.facebook:hover {
    border-color: #1877f2;
    background: rgba(24, 119, 242, 0.08);
}

.auth-clients .auth-link.google {
    border-color: rgba(234, 67, 53, 0.3);
}
.auth-clients .auth-link.google:hover {
    border-color: #ea4335;
    background: rgba(234, 67, 53, 0.08);
}

.auth-clients .auth-link.sso {
    border-color: rgba(225, 29, 72, 0.3);
}
.auth-clients .auth-link.sso:hover {
    border-color: var(--primary);
    background: rgba(225, 29, 72, 0.08);
}

.auth-icon {
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.auth-link__text {
    display: inline-block;
}

/* Horizontal separators */
.social-separator {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0.5rem 0;
}

.social-separator::before,
.social-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border);
}

.social-separator:not(:empty)::before {
    margin-right: .75em;
}

.social-separator:not(:empty)::after {
    margin-left: .75em;
}

/* Input boxes with icons */
.form__group {
    margin-bottom: 1rem;
    width: 100%;
}

.input--icon {
    position: relative;
    display: flex;
    width: 100%;
}

.input--icon i {
    position: absolute;
    left: 1.15rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition);
}

.input--icon .input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 3rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

[data-theme="light"] .input--icon .input {
    background: rgba(0, 0, 0, 0.015);
}

.input--icon .input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
}

.input--icon .input:focus + i {
    color: var(--primary);
}

.form-actions {
    margin-top: 0.5rem;
}

/* Account transitions and extra info */
.create-account {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.create-account a {
    color: var(--primary);
    font-weight: 700;
}

.create-account a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.form-extra-info {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
}

.form-extra-info a {
    color: var(--text);
    text-decoration: underline;
}

.form-extra-info a:hover {
    color: var(--primary);
}

/* Left panel footer information */
.auth__info-footer {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

.auth__info-footer span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Right-side marketing box */
.auth__box--signup-txt {
    max-width: 500px;
    color: #cbd5e1;
    z-index: 2;
}

.auth__box--signup-txt h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

[data-theme="light"] .auth__box--signup-txt h1 {
    color: #0f172a;
}

.auth__box--signup-txt p {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

[data-theme="light"] .auth__box--signup-txt p {
    color: #475569;
}

.auth__box--signup-txt .toggle {
    cursor: pointer;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.auth__box--signup-txt .toggle:hover {
    color: var(--primary-hover);
}

.auth__box--signup-txt .toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.auth__box--signup-txt .toggle.active i {
    transform: rotate(180deg);
}

.toggle__content {
    display: none;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 0.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

[data-theme="light"] .toggle__content {
    border-top-color: rgba(0, 0, 0, 0.08);
}

.toggle__content.show {
    display: block;
}

.listcheck {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem 1rem;
    padding: 0;
    margin: 0;
}

.listcheck__item {
    font-size: 0.85rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="light"] .listcheck__item {
    color: #475569;
}

.listcheck__item i {
    color: #10b981;
    font-size: 0.85rem;
}

/* Demo selector customization */
.demo-options-container {
    border: 1px dashed var(--border);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.015);
    margin-bottom: 0.5rem;
}

.demo-toggle-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-toggle-btn:hover {
    color: var(--text);
}

.demo-toggle-btn i {
    transition: transform 0.2s ease;
}

.demo-toggle-btn.active i {
    transform: rotate(90deg);
}

.demo-fields {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px dashed var(--border);
}

.demo-fields.show {
    display: grid;
}

.demo-fields .form-group {
    margin-bottom: 0;
}

.demo-fields label {
    font-size: 0.75rem;
}

.demo-fields select {
    padding: 0.5rem;
    font-size: 0.85rem;
}
