/* DINOGOLD — Dark + Gold Theme */

body {
    background-color: #0d1117;
    color: #c9d1d9;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.text-warning { color: #FFD700 !important; }
.btn-warning {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #0d1117;
}
.btn-warning:hover {
    background-color: #FFC107;
    border-color: #FFC107;
    color: #0d1117;
}

.card {
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(13, 17, 23, 0.95) !important;
}

.form-control {
    background-color: #161b22;
    border-color: #30363d;
    color: #c9d1d9;
}
.form-control:focus {
    background-color: #161b22;
    border-color: #FFD700;
    color: #c9d1d9;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.badge { font-size: 0.75em; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0d1117; }
::-webkit-scrollbar-thumb { background: #30363d; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #484f58; }
