/* ===== SK Tech Bilal - Custom Theme ===== */

/* General Colors */
body {
    background-color: #f4f7fb;
    color: #1e293b;
}

/* Header / Navbar */
.navbar, .header, header {
    background: linear-gradient(90deg, #1e3a8a, #2563eb) !important;
    color: #ffffff !important;
}

/* Links */
a {
    color: #2563eb;
}
a:hover {
    color: #1d4ed8;
}

/* ===== Buttons ===== */
.btn, button, input[type="submit"] {
    background: linear-gradient(90deg, #2563eb, #3b82f6) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 10px 22px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}

.btn:hover, button:hover, input[type="submit"]:hover {
    background: linear-gradient(90deg, #1d4ed8, #2563eb) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.45);
}

/* Success / Earn buttons (green accent) */
.btn-success, .earn-btn, .btn-earn {
    background: linear-gradient(90deg, #16a34a, #22c55e) !important;
    box-shadow: 0 4px 10px rgba(22, 163, 74, 0.3);
}
.btn-success:hover, .earn-btn:hover, .btn-earn:hover {
    background: linear-gradient(90deg, #15803d, #16a34a) !important;
}

/* Danger / Withdraw-block buttons */
.btn-danger {
    background: linear-gradient(90deg, #dc2626, #ef4444) !important;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

/* Cards / Boxes */
.card, .box, .panel {
    border-radius: 12px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

/* Sidebar */
.sidebar {
    background-color: #1e293b !important;
    color: #f1f5f9 !important;
}
.sidebar a {
    color: #cbd5e1 !important;
}
.sidebar a:hover {
    color: #ffffff !important;
    background-color: #334155 !important;
}