/* 
 * AIMangaMaker.com - Main Stylesheet
 * Main styling for the website
 */

/* ===== RESET & BASE STYLES ===== */
:root {
    --primary-color: #e50914;
    --primary-dark: #c20711;
    --secondary-color: #b81d24;
    --accent-color: #f40612;
    --dark-color: #141414;
    --light-color: #b3b3b3;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #2f2f2f;
    --gray-200: #333333;
    --gray-300: #404040;
    --gray-400: #565656;
    --gray-500: #808080;
    --gray-600: #b3b3b3;
    --gray-700: #cccccc;
    --gray-800: #e5e5e5;
    --gray-900: #ffffff;
    --black: #000000;

    /* Status & Alert Colors */
    --success-color: #4caf50;
    --info-color: #2196f3;
    --warning-color: #ff9800;
    --danger-color: #f44336;

    /* UI Component Colors */
    --card-bg: #333333;
    --text-color: #e5e5e5;
    --text-muted: #808080;

    /* Modal specific colors */
    --modal-bg: #454545;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-mono: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, Courier, monospace;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    
    --transition: all 0.3s ease;
}

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

/* Global AIMM Red Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
    transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #cc0812;
}

::-webkit-scrollbar-corner {
    background: var(--gray-200);
}

/* Firefox scrollbar styling */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--gray-200);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-100);
}

/* Global textarea styling */
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    background-color: var(--gray-300);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    line-height: 1.5;
    resize: vertical;
    min-height: 100px;
    transition: var(--transition);
}

textarea::placeholder {
    color: var(--gray-500);
    opacity: 0.8;
}

textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    background-color: var(--gray-400);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

textarea:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: var(--gray-200);
}

/* Global select and option styling */
select {
    background-color: var(--gray-200);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    transition: var(--transition);
    accent-color: var(--primary-color);
}

select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

select option {
    background: var(--gray-200);
    color: var(--white);
    accent-color: var(--primary-color);
}

select option:hover,
select option:focus,
select option:checked {
    background: var(--primary-color) !important;
    color: white !important;
}

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

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    margin: 0.2em;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-top: -1.5rem;
    margin-bottom: 2rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    color: var(--white);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

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

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

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

.btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* ===== HEADER ===== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 5px;
}

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

nav ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    max-width: 200px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    max-width: 100%;
    object-fit: contain;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--gray-200);
}

.mobile-menu ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
}

.mobile-menu li {
    width: 100%;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu a:hover {
    background: var(--gray-50);
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    color: var(--white);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 5rem 0;
    background-color: var(--gray-100);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* ===== WORKFLOW SECTION ===== */
.workflow {
    padding: 5rem 0;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.workflow-step {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-md);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.workflow-step:hover {
    box-shadow: var(--shadow-md);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
}

/* ===== EXAMPLES SECTION ===== */
.examples {
    padding: 5rem 0;
    background-color: var(--gray-100);
}

.examples-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-600);
    position: relative;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}

.example-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.example-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.example-card h3 {
    padding: 1rem;
    text-align: center;
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-color);
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    background-color: var(--gray-100);
}

.pricing-header h3 {
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.pricing-footer {
    padding: 0 2rem 2rem;
    text-align: center;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 5rem 0;
    background-color: var(--gray-100);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: var(--white);
}

.cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 5rem 0 2rem;
}

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

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--light-color);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991.98px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-content h1 {
        font-size: 1.4rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    nav ul {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* Notification styles */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.notification {
    margin-bottom: 10px;
    max-width: 350px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: notification-slide-in 0.3s ease forwards;
    opacity: 0;
    transform: translateX(100%);
}

.notification-hiding {
    animation: notification-slide-out 0.3s ease forwards;
}

.notification-content {
    display: flex;
    padding: 12px 16px;
    align-items: center;
    justify-content: space-between;
}

.notification-message {
    flex: 1;
    margin-right: 10px;
}

.notification-close {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}

/* Notification types */
.notification-success {
    background-color: #e7f6e7;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

.notification-info {
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
    color: #0d47a1;
}

.notification-warning {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    color: #ff8f00;
}

.notification-error {
    background-color: #ffebee;
    border-left: 4px solid #f44336;
    color: #c62828;
}

/* Animations */
@keyframes notification-slide-in {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes notification-slide-out {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* View status styles */
.status-complete {
    color: #4caf50;
    font-weight: 500;
}

.status-generating {
    color: #2196f3;
    font-weight: 500;
}

.status-pending {
    color: var(--light-color);
    font-weight: 500;
}

.status-failed {
    color: #f44336;
    font-weight: 500;
}

/* Export Modal Styles */
.export-info {
    background: var(--gray-100);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.export-progress {
    text-align: center;
    padding: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    animation: progress-animation 2s ease-in-out infinite;
}

@keyframes progress-animation {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.export-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.export-success p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.export-success .btn {
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
}

/* Font Preview Dropdown Styles */
.font-preview-select {
    background-color: var(--gray-200);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 8px 12px;
}

.font-preview-select option {
    padding: 8px 12px;
    line-height: 1.4;
    background-color: var(--gray-200);
    color: var(--white);
}

.font-preview-select option[data-font-family] {
    font-family: var(--font-family);
}

/* Specific font preview styles */
.font-preview-select option[data-font-family="Arial, sans-serif"] {
    font-family: Arial, sans-serif;
}

.font-preview-select option[data-font-family="'Times New Roman', serif"] {
    font-family: 'Times New Roman', serif;
}

.font-preview-select option[data-font-family="'Courier New', monospace"] {
    font-family: 'Courier New', monospace;
}

.font-preview-select option[data-font-family="Georgia, serif"] {
    font-family: Georgia, serif;
}

.font-preview-select option[data-font-family="Verdana, sans-serif"] {
    font-family: Verdana, sans-serif;
}

.font-preview-select option[data-font-family="'Trebuchet MS', sans-serif"] {
    font-family: 'Trebuchet MS', sans-serif;
}

.font-preview-select option[data-font-family="'Comic Sans MS', cursive"] {
    font-family: 'Comic Sans MS', cursive;
}

.font-preview-select option[data-font-family="Impact, sans-serif"] {
    font-family: Impact, sans-serif;
}

.font-preview-select option[data-font-family="'Lucida Console', monospace"] {
    font-family: 'Lucida Console', monospace;
}

.font-preview-select option[data-font-family="Tahoma, sans-serif"] {
    font-family: Tahoma, sans-serif;
}

.font-preview-select option[data-font-family="'Comic Neue', sans-serif"] {
    font-family: 'Comic Neue', sans-serif;
}

.font-preview-select option[data-font-family="'Kalam', cursive"] {
    font-family: 'Kalam', cursive;
}

.font-preview-select option[data-font-family="'Gloria Hallelujah', cursive"] {
    font-family: 'Gloria Hallelujah', cursive;
}

.font-preview-select option[data-font-family="'Shadows Into Light', cursive"] {
    font-family: 'Shadows Into Light', cursive;
}

.font-preview-select option[data-font-family="'Patrick Hand', cursive"] {
    font-family: 'Patrick Hand', cursive;
}

/* Titles / Dramatic */
.font-preview-select option[data-font-family="'Bangers', cursive"] {
    font-family: 'Bangers', cursive;
}

.font-preview-select option[data-font-family="'Luckiest Guy', cursive"] {
    font-family: 'Luckiest Guy', cursive;
}

.font-preview-select option[data-font-family="'Permanent Marker', cursive"] {
    font-family: 'Permanent Marker', cursive;
}

.font-preview-select option[data-font-family="'Fredoka One', cursive"] {
    font-family: 'Fredoka One', cursive;
}

.font-preview-select option[data-font-family="'Rubik Mono One', sans-serif"] {
    font-family: 'Rubik Mono One', sans-serif;
}

/* Effects / Emphasis */
.font-preview-select option[data-font-family="'Carter One', cursive"] {
    font-family: 'Carter One', cursive;
}

.font-preview-select option[data-font-family="'Special Elite', cursive"] {
    font-family: 'Special Elite', cursive;
}

.font-preview-select option[data-font-family="'Rock Salt', cursive"] {
    font-family: 'Rock Salt', cursive;
}

.font-preview-select option[data-font-family="'Changa One', cursive"] {
    font-family: 'Changa One', cursive;
}

.font-preview-select option[data-font-family="'Chewy', cursive"] {
    font-family: 'Chewy', cursive;
}

/* Shadow Controls Styles */
.shadow-controls {
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: 1rem;
    background: var(--gray-50);
}

.shadow-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.shadow-settings {
    transition: all 0.3s ease;
}

.shadow-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.shadow-row:last-child {
    margin-bottom: 0;
}

.shadow-control {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.shadow-control.full-width {
    flex: 1 1 100%;
}

.shadow-control label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.shadow-control input[type="range"] {
    width: 100%;
    margin: 0;
}

.shadow-control .range-value {
    font-size: 0.75rem;
    color: var(--gray-600);
    text-align: center;
}

.shadow-control .color-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.shadow-control .color-input-group input[type="color"] {
    width: 40px;
    height: 32px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.shadow-control .color-input-group input[type="text"] {
    flex: 1;
    padding: 0.375rem 0.5rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}