@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #f8fafc;
    transition: background 0.3s, color 0.3s;
}

/* Dark Mode */
body.dark {
    background: #0f172a;
    color: #f1f5f9;
}

body.dark .glass-card {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(255, 255, 255, 0.05);
}

body.dark .input-field {
    background: #1e293b;
    border-color: #334155;
    color: white;
}

body.dark .input-money {
    color: white;
}

body.dark thead {
    background: rgba(15, 23, 42, 0.5);
}

body.dark .btn-nav {
    background: #1e293b;
    border-color: #334155;
    color: white;
}

/* Components */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.gradient-card {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.label-admin {
    font-size: 10px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.input-money {
    outline: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    font-weight: 800;
    width: 140px;
    color: #1e293b;
}

.input-field {
    width: 100%;
    padding: 12px 16px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    outline: none;
    transition: 0.3s;
}

.input-field:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.btn-primary {
    background: #1e293b;
    color: white;
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: #4f46e5;
    transform: scale(1.02);
}

.btn-nav {
    padding: 6px 12px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 10px;
}

/* Status Dots */
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot-quitada {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.dot-pendente {
    background: #3b82f6;
}

.dot-atrasada {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.dot-proximo {
    background: #f59e0b;
}

.badge {
    font-size: 10px;
    background: #eef2ff;
    padding: 4px 12px;
    border-radius: 99px;
    color: #4f46e5;
    font-weight: 800;
}

.animate-slide-down {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}