/*
Theme Name: Scalix Web's Theme
Theme URI: https://scalixwebs.com
Author: Gonzalo Diestra
Author URI: https://scalixwebs.com
Description: Un tema premium con estética neón y efectos de scroll para Scalix Web's.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: scalix-webs
*/

:root {
    --primary: #8a2be2; /* Morado */
    --accent: #00f2ff;  /* Neon Cyan */
    --bg-dark: #0a0a0c;
    --bg-card: #16161a;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --gray: #2d2d35;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

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

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(10, 10, 12, 0.9);
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    z-index: 1100;
}

.logo span {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.6);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--primary);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.admin-btn-nav {
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid var(--primary) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary) !important;
    font-weight: 700 !important;
}

.admin-btn-nav:hover {
    background: var(--primary);
    color: #fff !important;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}

.pulse-icon {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.7);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 242, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 255, 0); }
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.05;
    animation: moveBg 60s linear infinite;
}

@keyframes moveBg {
    from { transform: translate(0,0); }
    to { transform: translate(-50%, -50%); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    opacity: 1;
    transform: translateY(0);
    transition: 1s ease-out;
}

.js-enabled .hero-content {
    opacity: 0;
    transform: translateY(30px);
}

.js-enabled .hero-content.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-badge {
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: inline-block;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, var(--primary), var(--accent));
    -webkit-background-clip: text;
    color: #fff; /* Cambiamos de transparent a blanco como fallback */
    filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.3));
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.5);
    background: #9b4dff;
}

/* --- Sections General --- */
section {
    padding: 10rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 5rem;
    opacity: 1;
    transform: translateY(0);
    transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js-enabled .section-header {
    opacity: 0;
    transform: translateY(50px);
}

.section-header.reveal {
    opacity: 1;
    transform: translateY(0);
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* --- Reveal Variations --- */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
    transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js-enabled .reveal-up {
    opacity: 0;
    transform: translateY(60px);
}

.js-enabled .reveal-left {
    opacity: 0;
    transform: translateX(-60px);
}

.js-enabled .reveal-right {
    opacity: 0;
    transform: translateX(60px);
}

.js-enabled .reveal-scale {
    opacity: 0;
    transform: scale(0.9);
}

.reveal.reveal-up, 
.reveal.reveal-left, 
.reveal.reveal-right, 
.reveal.reveal-scale,
.reveal-up.reveal,
.reveal-left.reveal,
.reveal-right.reveal,
.reveal-scale.reveal {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

/* --- Services --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 5rem;
}

.service-card {
    background: #121214;
    border: 1px solid #2d2d30;
    border-radius: 24px;
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    text-align: left;
    height: 100%;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-icon-box {
    width: 50px;
    height: 50px;
    background: #1c1c1f;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    border: 1px solid #2d2d30;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.service-card p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-includes-title {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    display: block;
}

.service-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-includes-list li {
    color: #e0e0e0;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-includes-list li::before {
    content: '-';
    color: #a0a0a0;
}

/* --- Pricing Plans --- */
.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    margin-top: 5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.pricing-card {
    background-color: var(--bg-card) !important;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(10, 10, 12, 0) 100%) !important;
    border: 1px solid var(--gray) !important;
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    min-height: 550px;
}

.pricing-card.featured {
    border: 2px solid var(--primary) !important;
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.2);
    background-color: var(--bg-card) !important;
    background-image: linear-gradient(180deg, rgba(138, 43, 226, 0.15) 0%, rgba(10, 10, 12, 0) 100%) !important;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary) !important;
    box-shadow: 0 30px 60px rgba(138, 43, 226, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
    border-color: var(--primary) !important;
    box-shadow: 0 35px 70px rgba(138, 43, 226, 0.3);
}

.recommended-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 0 0 12px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

.plan-badge {
    position: absolute;
    top: 25px;
    right: -40px;
    background: #ef4444;
    color: white;
    padding: 8px 50px;
    font-size: 0.8rem;
    font-weight: 800;
    transform: rotate(45deg);
    text-transform: uppercase;
    z-index: 4;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff !important;
    letter-spacing: -0.5px;
    font-family: 'Outfit', sans-serif;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.price-old {
    color: #6b7280;
    text-decoration: line-through;
    font-size: 1.2rem;
}

.price-current {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff !important;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.price-period {
    color: #9ca3af;
    font-size: 1rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 3.5rem;
    flex-grow: 1;
    padding: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #a0a0a0 !important;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    text-align: left;
}

.plan-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 900;
    font-size: 1rem;
}

.btn-plan {
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    margin-top: auto;
}

.pricing-card.featured .btn-plan {
    background: var(--primary);
    color: #fff;
}

.btn-plan:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

/* Plan Custom Especial */
.pricing-card.custom {
    border: 1px dashed var(--accent) !important;
    background-color: var(--bg-card) !important;
    background-image: linear-gradient(180deg, rgba(0, 242, 255, 0.05) 0%, rgba(10, 10, 12, 0) 100%) !important;
}

.pricing-card.custom:hover {
    border-style: solid !important;
    border-color: var(--accent) !important;
    box-shadow: 0 30px 60px rgba(0, 242, 255, 0.15);
}

.pricing-card.custom .price-current {
    color: var(--accent) !important;
    font-size: 2.5rem;
}

.pricing-card.custom .btn-plan {
    border-color: var(--accent);
    color: var(--accent);
}

.pricing-card.custom .btn-plan:hover {
    background: var(--accent);
    color: #000;
}

/* --- About --- */
.about-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    min-width: 300px;
    opacity: 1;
    transform: translateX(0);
    transition: 0.8s ease-out;
}

.js-enabled .about-content {
    opacity: 0;
    transform: translateX(-30px);
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: var(--gray);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateX(0);
    transition: 0.8s ease-out;
}

.js-enabled .about-image {
    opacity: 0;
    transform: translateX(30px);
}

.about-content.reveal, .about-image.reveal {
    opacity: 1;
    transform: translateX(0);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    opacity: 0.3;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* --- Contact --- */
.contact {
    background: #0f0f13;
}

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

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-method {
    margin-bottom: 2rem;
}

.contact-method label {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-method p {
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--gray);
    padding: 1rem;
    border-radius: 8px;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.2);
}

/* --- Footer --- */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--gray);
    text-align: center;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: block;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .container { padding: 0 1.5rem; }
    .hero h1 { font-size: clamp(2.5rem, 10vw, 4.5rem); }
    .about-flex { gap: 2.5rem; }
    .pricing-grid {
        gap: 1.5rem;
    }
    .pricing-card {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    section { padding: 6rem 0; }
    
    .menu-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 1050;
        border-left: 1px solid rgba(138, 43, 226, 0.2);
    }

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

    .nav-links a {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        padding: 1.5rem;
    }

    .admin-btn-nav {
        margin-top: 2rem;
        padding: 1rem 2rem !important;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-btns .btn {
        width: 100%;
    }

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

    .section-header h2 { font-size: 2.2rem; }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-image {
        height: 300px;
    }

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

    /* Pricing Mobile */
    .pricing-card.featured {
        transform: scale(1.02);
        box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
    }
    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 3.5rem;
    }
    .pricing-card {
        max-width: 100%;
        padding: 2.5rem 1.5rem;
    }

    /* Admin Mobile */
    .admin-container {
        padding: 8rem 1rem 3rem;
    }
    .admin-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        text-align: left;
    }
    .admin-title div {
        width: 100%;
    }
    .stat-value {
        font-size: 2.5rem !important;
    }
    .admin-card {
        padding: 1.5rem;
    }
    /* Mesa de proyectos responsiva */
    .project-table thead {
        display: none;
    }
    .project-table tr {
        display: block;
        margin-bottom: 2rem;
        border: 1px solid var(--gray);
        border-radius: 12px;
        background: rgba(255,255,255,0.02);
    }
    .project-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-align: right;
    }
    .project-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--primary);
        text-transform: uppercase;
        font-size: 0.75rem;
    }
    .message-cell {
        max-width: 100% !important;
        text-align: left !important;
        flex-direction: column;
        align-items: flex-start !important;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1rem; }
    .section-header h2 { font-size: 1.8rem; }
    .btn { padding: 1rem 1.5rem; font-size: 0.8rem; }
}

/* Parallax effect elements */
.parallax-element {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    filter: blur(60px);
    border-radius: 50%;
}

.p-1 { top: 10%; right: 10%; width: 300px; height: 300px; background: rgba(138, 43, 226, 0.15); }
.p-2 { bottom: 10%; left: 5%; width: 400px; height: 400px; background: rgba(0, 242, 255, 0.1); }

/* --- Admin Styles --- */
.admin-container {
    padding: 12rem 2rem 5rem;
    min-height: 100vh;
    background: var(--bg-dark);
}
.admin-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(10, 10, 12, 0) 100%), var(--bg-card);
    border: 1px solid var(--gray);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.admin-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.1);
}

.admin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.admin-card:hover::before {
    opacity: 1;
}
.admin-title {
    color: var(--accent);
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.project-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-main);
}
.project-table th, .project-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--gray);
}
.project-table th {
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}
.status-active { background: rgba(0, 242, 255, 0.1); color: var(--accent); border: 1px solid var(--accent); }
.status-pending { background: rgba(138, 43, 226, 0.1); color: var(--primary); border: 1px solid var(--primary); }

.btn-admin {
    background: transparent;
    border: 1px solid var(--gray);
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.8rem;
}
.btn-admin:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: 10px;
}
