/* styles-auto-theme.css - Creado automáticamente */
:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --link-color: #0066cc;
    --input-bg: #f5f5f5;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1a1a1a;
        --text-color: #f0f0f0;
        --link-color: #7aa6ff;
        --input-bg: #2d2d2d;
    }
}

body {
    background-color: var(--bg-color) !important;
    color: var(--text-color) !important;
}

a {
    color: var(--link-color);
}

input,
textarea,
select,
button {
    background-color: var(--input-bg);
    color: var(--text-color);
    border: 1px solid var(--text-color);
}
/* Estilo para las instrucciones */
.form-text.text-muted {
    color: #6c757d; /* Color gris oscuro que es legible sobre fondos claros */
}

@media (prefers-color-scheme: dark) {
    .form-text.text-muted {
        color: #b0b0b0; /* Color gris más suave en modo oscuro para mejorar la legibilidad */
    }
}
/* Admin Dashboard Styles */

/* Grid pattern animation */
@keyframes grid-fade {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
}

.grid-pattern {
    background-image: 
        linear-gradient(#6366F1 1.5px, transparent 1.5px),
        linear-gradient(90deg, #6366F1 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    background-position: center center;
    animation: grid-fade 10s ease-in-out infinite;
}

/* Moving gradient animation */
@keyframes moving-gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Scrollbar styles for admin dashboard */
.scrollbar-thin::-webkit-scrollbar {
    width: 6px;
}

.scrollbar-thin::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.scrollbar-thin::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.5);
    border-radius: 3px;
}

.scrollbar-thin::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.7);
}

/* Card hover effects */
.admin-card {
    transition: all 0.3s ease;
}

.admin-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animated border glow effect */
@keyframes border-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(99, 102, 241, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
    }
}

.border-glow {
    animation: border-glow 3s ease-in-out infinite;
}

/* Pulse animation for notification indicators */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
    }
}

.notification-indicator {
    animation: pulse 2s infinite;
}

/* Fix for admin dashboard to ensure it's full-screen */
body.admin-dashboard {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
}

/* Ensure the admin container takes full height */
.admin-container {
    min-height: 100vh;
    height: 100vh;
}