/* ============================================
   SI-KONCI - MAIN STYLESHEET
   SMPN 13 Penajam Paser Utara
   Inovasi Daerah PPU 2026
   ============================================ */

/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a237e;
    --primary-light: #3949ab;
    --primary-dark: #0d1445;
    --secondary: #00897b;
    --secondary-light: #26a69a;
    --accent: #ff6f00;
    --accent-light: #ffa726;
    --success: #2e7d32;
    --danger: #c62828;
    --warning: #e65100;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --shadow-xl: 0 12px 60px rgba(0,0,0,0.20);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.highlight {
    color: var(--secondary);
}

/* ---------- TYPOGRAPHY ---------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 137, 123, 0.12);
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 20px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: var(--font-family);
}

.btn i {
    font-size: 1.1rem;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-nav {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.btn-nav.btn-primary:hover {
    background: var(--primary-light);
}

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

.btn-nav.btn-secondary:hover {
    background: var(--secondary-light);
}

.btn-nav.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    padding: 12px 0;
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    font-size: 2rem;
    color: var(--secondary);
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.brand-sub {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 2px 10px;
    border-radius: 50px;
    margin-left: 4px;
}

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

.nav-menu .nav-link {
    padding: 8px 16px;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: 50px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
    color: var(--primary);
    background: rgba(26, 35, 126, 0.06);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ---------- HERO SECTION ---------- */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f5e9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 137, 123, 0.12);
    color: var(--secondary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-badge i {
    font-size: 0.8rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--secondary);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(0, 137, 123, 0.2);
    border-radius: 4px;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Hero Illustration */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 137, 123, 0.25);
}

.hero-illustration > i {
    font-size: 7rem;
    color: rgba(255,255,255,0.2);
}

.floating-icon {
    position: absolute;
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

.floating-icon.icon-1 { top: 8%; right: 8%; animation-delay: 0s; color: var(--secondary); }
.floating-icon.icon-2 { bottom: 12%; right: 4%; animation-delay: 0.8s; color: var(--accent); }
.floating-icon.icon-3 { bottom: 28%; left: 2%; animation-delay: 1.6s; color: var(--primary-light); }
.floating-icon.icon-4 { top: 24%; left: 4%; animation-delay: 2.4s; color: var(--danger); }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* ---------- ABOUT SECTION ---------- */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    padding: 36px 28px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.about-card:hover {
    border-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.about-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.about-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---------- FEATURES SECTION ---------- */
.features {
    padding: 80px 0;
    background: var(--gray-50);
}

.features-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
    color: var(--gray-600);
    box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.feature-panel {
    display: none;
    animation: fadeUp 0.5s ease;
}

.feature-panel.active {
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

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

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.badge-new {
    font-size: 0.65rem;
    font-weight: 600;
    background: var(--secondary);
    color: var(--white);
    padding: 2px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.feature-list {
    margin-top: 8px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-700);
    padding: 2px 0;
}

.feature-list li i {
    color: var(--secondary);
    font-size: 0.8rem;
}

/* ---------- BENEFITS SECTION ---------- */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 28px;
    padding: 28px 32px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
    border-left: 4px solid var(--secondary);
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.benefit-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.3;
    line-height: 1;
    min-width: 50px;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.benefit-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---------- CTA SECTION ---------- */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-content h2 .highlight {
    color: var(--accent-light);
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand i {
    font-size: 2rem;
    color: var(--secondary);
}

.footer-brand span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin: 4px 0 8px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p i {
    width: 20px;
    color: var(--secondary);
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--white);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-illustration {
        max-width: 300px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 32px 32px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        gap: 4px;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        width: 100%;
        padding: 12px 16px;
        border-radius: var(--radius-sm);
    }

    .nav-menu .btn-nav {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .hero-illustration {
        max-width: 220px;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        gap: 8px;
        padding: 20px;
    }

    .benefit-number {
        font-size: 1.4rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .features-tabs {
        gap: 4px;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-illustration {
        max-width: 180px;
    }

    .hero-illustration > i {
        font-size: 4rem;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .feature-card {
        padding: 20px;
    }
}
/* ============================================ */
/* ARTIKEL SLIDER */
/* ============================================ */
.artikel-slider-wrapper {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
}

.artikel-slider-container {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 4px 20px;
    will-change: transform;
}

.artikel-card {
    min-width: calc(33.333% - 20px);
    flex-shrink: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.04);
}

.artikel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #e9ecef;
    background: white;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.slider-btn:hover:not(:disabled) {
    background: #00897b;
    color: white;
    border-color: #00897b;
    transform: scale(1.05);
}

.slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.slider-btn:disabled:hover {
    background: white;
    color: #495057;
    border-color: #e9ecef;
}

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

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dee2e6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-dots .dot.active {
    background: #00897b;
    width: 28px;
    border-radius: 5px;
}

/* Responsive Slider */
@media (max-width: 1024px) {
    .artikel-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .artikel-card {
        min-width: calc(100% - 10px);
    }
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
}

/* ============================================
   ELEGANT SIDE NOTIFICATION / TOAST SYSTEM
   ============================================ */
.toast-container-side {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
    width: calc(100vw - 48px);
    pointer-events: none;
}

.side-toast {
    pointer-events: auto;
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0,0,0,0.06);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.side-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.side-toast-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.side-toast.error .side-toast-icon {
    background: #fee2e2;
    color: #ef4444;
}

.side-toast.success .side-toast-icon {
    background: #d1fae5;
    color: #10b981;
}

.side-toast.warning .side-toast-icon {
    background: #fef3c7;
    color: #f59e0b;
}

.side-toast.info .side-toast-icon {
    background: #dbeafe;
    color: #3b82f6;
}

.side-toast-body {
    flex: 1;
    min-width: 0;
}

.side-toast-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
    line-height: 1.3;
}

.side-toast-message {
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.45;
    white-space: pre-line;
}

.side-toast-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 2px;
    margin-left: 4px;
    transition: color 0.2s ease;
}

.side-toast-close:hover {
    color: #0f172a;
}

.side-toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: rgba(0, 0, 0, 0.08);
}

.side-toast-progress-bar {
    height: 100%;
    width: 100%;
    transition: width 5s linear;
}

.side-toast.error .side-toast-progress-bar { background: #ef4444; }
.side-toast.success .side-toast-progress-bar { background: #10b981; }
.side-toast.warning .side-toast-progress-bar { background: #f59e0b; }
.side-toast.info .side-toast-progress-bar { background: #3b82f6; }