/* AI Content Generator - Enhanced Custom Styles */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #8b5cf6;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #06b6d4;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --purple: #8b5cf6;

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-navbar: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
}

/* ===== Base Styles ===== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 1rem;
    color: white;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #0f172a;
    line-height: 1.3;
}

/* ===== Navbar ===== */
.navbar {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-lg);
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.brand-text {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.navbar .nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.navbar .nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.navbar .nav-link i {
    opacity: 0.85;
}

/* Usage Badge */
.usage-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* User Avatar */
.user-avatar {
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.user-avatar-placeholder {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #f472b6 0%, #c084fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.user-name {
    color: white;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.btn-get-started {
    font-weight: 600;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.btn-get-started:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* ===== Cards ===== */
.card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    background: white;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card-header {
    background: transparent;
    border-bottom: 1px solid #f1f5f9;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
}

.card-body {
    padding: 1.5rem;
}

/* ===== Buttons ===== */
.btn {
    border-radius: var(--radius-md);
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    transition: all var(--transition-fast);
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.39);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
    background: var(--gradient-primary);
}

.btn-primary:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

/* ===== Forms ===== */
.form-control,
.form-select {
    border-radius: var(--radius-md);
    border: 2px solid #e2e8f0;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: white;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
    outline: none;
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-label {
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-text {
    color: #64748b;
    font-size: 0.85rem;
}

/* Input group */
.input-group-text {
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    border-right: none;
    color: #64748b;
}

.input-group .form-control {
    border-left: none;
}

/* Form Range / Slider */
.form-range {
    height: 8px;
}

.form-range::-webkit-slider-thumb {
    background: var(--primary-color);
    border: 3px solid white;
    box-shadow: var(--shadow-md);
    width: 20px;
    height: 20px;
}

.form-range::-webkit-slider-runnable-track {
    background: #e2e8f0;
    border-radius: 10px;
}

/* Form Switch */
.form-switch .form-check-input {
    width: 3rem;
    height: 1.5rem;
}

.form-switch .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ===== Badges ===== */
.badge {
    font-weight: 500;
    padding: 0.4em 0.8em;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
}

/* ===== Alerts ===== */
.alert {
    border-radius: var(--radius-md);
    border: none;
    padding: 1rem 1.25rem;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
}

.alert-warning {
    background: #fef3c7;
    color: #92400e;
}

.alert-info {
    background: #e0f2fe;
    color: #075985;
}

/* ===== Progress bars ===== */
.progress {
    border-radius: var(--radius-lg);
    background-color: #e2e8f0;
    height: 10px;
    overflow: hidden;
}

.progress-bar {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
}

/* ===== List groups ===== */
.list-group-item {
    border: none;
    border-bottom: 1px solid #f1f5f9;
    padding: 1rem 1.25rem;
    transition: background var(--transition-fast);
}

.list-group-item:last-child {
    border-bottom: none;
}

.list-group-item:hover {
    background-color: #f8fafc;
}

.list-group-item.active {
    background: var(--gradient-primary);
    border-color: transparent;
}

/* ===== Dropdown ===== */
.dropdown-menu {
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-xl);
    padding: 0.5rem;
    min-width: 220px;
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.625rem 1rem;
    font-weight: 500;
    color: #475569;
    transition: all var(--transition-fast);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #f1f5f9;
    color: #1e293b;
}

.dropdown-item i {
    width: 1.25rem;
}

.dropdown-header {
    font-size: 0.9rem;
    color: #1e293b;
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-color: #f1f5f9;
}

/* ===== Tables ===== */
.table {
    --bs-table-hover-bg: #f8fafc;
}

.table th {
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    border-bottom-width: 1px;
}

.table td {
    vertical-align: middle;
    color: #334155;
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section h1 {
    color: white;
}

/* ===== Content type cards ===== */
.content-type-card {
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent !important;
    border-radius: var(--radius-lg) !important;
}

.content-type-card:hover {
    border-color: var(--primary-light) !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.15);
}

.content-type-card.selected {
    border-color: var(--primary-color) !important;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.content-type-card .card-body {
    padding: 1.5rem;
}

.content-type-card i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Content text styling ===== */
.content-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #334155;
}

.content-text h1, .content-text h2, .content-text h3 {
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.content-text p {
    margin-bottom: 1.25rem;
}

.content-text ul, .content-text ol {
    margin-bottom: 1.25rem;
    padding-left: 1.75rem;
}

.content-text li {
    margin-bottom: 0.5rem;
}

.content-text code {
    background-color: #f1f5f9;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.9em;
    color: #e11d48;
}

.content-text pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 1.25rem 0;
}

.content-text pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* ===== Footer ===== */
.site-footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: #cbd5e1;
    padding: 4rem 0 2rem;
}

.brand-icon-footer {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.brand-text-footer {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.footer-description {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-heading {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #a78bfa;
    transform: translateX(3px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.social-link:hover,
.social-link:focus {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0 1.5rem;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.copyright {
    color: #64748b;
    font-size: 0.8rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus {
    color: #a78bfa;
}

/* ===== Utility classes ===== */
.text-purple {
    color: var(--purple) !important;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.hover-shadow:hover {
    box-shadow: var(--shadow-lg);
}

.transition-all {
    transition: all var(--transition-base);
}

/* ===== Responsive adjustments ===== */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.1);
        border-radius: var(--radius-md);
        padding: 1rem;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .content-type-card .card-body {
        padding: 1rem;
    }

    .content-type-card i {
        font-size: 1.75rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* ===== Dark mode support ===== */
[data-bs-theme="dark"] {
    --bs-body-bg: #0f172a;
    --bs-body-color: #e2e8f0;
}

[data-bs-theme="dark"] body {
    background-color: #0f172a;
}

[data-bs-theme="dark"] .card {
    background-color: #1e293b;
    border-color: #334155;
}

[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-select {
    background-color: #1e293b;
    border-color: #334155;
    color: #e2e8f0;
}

[data-bs-theme="dark"] .form-control:focus,
[data-bs-theme="dark"] .form-select:focus {
    border-color: var(--primary-color);
    background-color: #1e293b;
}

[data-bs-theme="dark"] .list-group-item {
    background-color: #1e293b;
    border-color: #334155;
    color: #e2e8f0;
}

[data-bs-theme="dark"] .dropdown-menu {
    background-color: #1e293b;
    border-color: #334155;
}

[data-bs-theme="dark"] .dropdown-item {
    color: #cbd5e1;
}

[data-bs-theme="dark"] .dropdown-item:hover {
    background-color: #334155;
    color: white;
}

[data-bs-theme="dark"] .table {
    --bs-table-bg: #1e293b;
    --bs-table-hover-bg: #334155;
}

[data-bs-theme="dark"] h1,
[data-bs-theme="dark"] h2,
[data-bs-theme="dark"] h3,
[data-bs-theme="dark"] h4,
[data-bs-theme="dark"] h5,
[data-bs-theme="dark"] h6 {
    color: #f1f5f9;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Loading spinner */
.generating #generating-spinner {
    display: inline-block;
}

.generating #generate-btn-text {
    display: none;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== Color Picker Component ===== */
.color-picker-wrapper {
    position: relative;
}

.color-picker-input {
    width: 100%;
    height: 48px;
    padding: 4px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.color-picker-input:hover {
    border-color: var(--primary-light);
}

.color-picker-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
    outline: none;
}

/* Color picker with preview */
.color-picker-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.color-preview {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    border: 2px solid #e2e8f0;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.color-hex-input {
    flex: 1;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Preset color swatches */
.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.color-swatch:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.color-swatch.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--primary-color);
}

/* Color picker in modal/dropdown */
.color-picker-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 1050;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 1rem;
    min-width: 220px;
    display: none;
}

.color-picker-dropdown.show {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

.color-picker-dropdown-header {
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

/* Preset colors grid */
.preset-colors {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 6px;
}

.preset-color {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.preset-color:hover {
    transform: scale(1.15);
}

/* Custom color input row */
.custom-color-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e8f0;
}

.custom-color-input {
    width: 36px;
    height: 36px;
    padding: 2px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.custom-color-input::-webkit-color-swatch-wrapper {
    padding: 0;
}

.custom-color-input::-webkit-color-swatch {
    border: none;
    border-radius: 4px;
}

/* Dark mode color picker */
[data-bs-theme="dark"] .color-picker-input {
    border-color: #334155;
    background-color: #1e293b;
}

[data-bs-theme="dark"] .color-picker-dropdown {
    background-color: #1e293b;
    border: 1px solid #334155;
}

[data-bs-theme="dark"] .color-picker-dropdown-header {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .custom-color-row {
    border-color: #334155;
}

[data-bs-theme="dark"] .color-preview {
    border-color: #334155;
}

[data-bs-theme="dark"] .custom-color-input {
    border-color: #334155;
    background-color: #0f172a;
}

/* ===== Navbar Color Picker ===== */
.color-picker-nav {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-color-btn {
    color: white;
    font-size: 1.25rem;
    opacity: 0.9;
    transition: all var(--transition-fast);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.15);
}

.nav-color-btn:hover,
.nav-color-btn:focus {
    color: white;
    opacity: 1;
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.color-picker-nav .color-picker-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 1050;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 1rem;
    min-width: 200px;
    display: none;
}

.color-picker-nav .color-picker-dropdown.show {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

.color-picker-header {
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.color-swatches-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin-bottom: 0.75rem;
}

.color-swatch-btn {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.color-swatch-btn:hover {
    transform: scale(1.15);
    border-color: rgba(0, 0, 0, 0.2);
}

.color-swatch-btn.active {
    border-color: #1f2937;
    box-shadow: 0 0 0 2px white, 0 0 0 4px #1f2937;
}

.color-picker-custom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e8f0;
}

.color-picker-custom label {
    font-size: 0.8rem;
    color: #64748b;
}

.color-picker-custom input[type="color"] {
    width: 32px;
    height: 32px;
    padding: 2px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    cursor: pointer;
}

[data-bs-theme="dark"] .color-picker-nav .color-picker-dropdown {
    background: #1e293b;
    border: 1px solid #334155;
}

[data-bs-theme="dark"] .color-picker-header {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .color-picker-custom {
    border-color: #334155;
}

[data-bs-theme="dark"] .color-picker-custom label {
    color: #94a3b8;
}

[data-bs-theme="dark"] .color-picker-custom input[type="color"] {
    border-color: #334155;
}
