/* ========================================
   COMPLETE CRYPTO COLORFUL DARK THEME
======================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* Body */
body {
    background: #070b14 !important;
    color: #e6edf3 !important;
    font-family: 'Poppins', sans-serif !important;
}

/* Scrollbar */

::-webkit-scrollbar {
    width: 6px !important;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,#3b82f6,#8b5cf6) !important;
    border-radius: 10px !important;
}

/* ========================================
   SIDEBAR
======================================== */

#sidebar-wrapper {
    background: #0b1220 !important;
    border-right: 1px solid #1e293b !important;
}

.brand-logo {
    background: #020617 !important;
    border-bottom: 1px solid #1e293b !important;
}

.logo-text {
    color: #fff !important;
}

.sidebar-menu li a {
    color: #cbd5e1 !important;
    padding: 12px 20px !important;
    margin: 5px 10px !important;
    border-radius: 12px !important;
    transition: .3s !important;
}

.sidebar-menu li a:hover {
    background: linear-gradient(45deg,#3b82f6,#8b5cf6) !important;
    color: #fff !important;
}

.sidebar-menu li.active a {
    background: linear-gradient(45deg,#06b6d4,#6366f1) !important;
    color: #fff !important;
}

/* ========================================
   HEADER
======================================== */

.topbar-nav .navbar {
    background: #0b1220 !important;
    border-bottom: 1px solid #1e293b !important;
}

.right-nav-link a.nav-link {
    color: #fff !important;
}

/* ========================================
   CARDS
======================================== */

.card {
    background: #0f172a !important;
    border-radius: 18px !important;
    border: 1px solid #1e293b !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4) !important;
    transition: .3s !important;
    overflow:hidden !important;
    position: relative !important;
}

.card:hover {
    transform: translateY(-5px) !important;
}

.card-header {
    background: transparent !important;
    border-bottom: 1px solid #1e293b !important;
}

.card-title {
    color: #fff !important;
}

/* ========================================
   COLORFUL CARDS
======================================== */

.border-light .card-body {
    background: linear-gradient(145deg,#020617,#0f172a) !important;
    border-radius: 18px !important;
    padding: 22px !important;
    border: 1px solid #1e293b !important;
}

/* ========================================
   BUTTONS
======================================== */

.btn {
    border-radius: 10px !important;
    font-weight: 500 !important;
}

.btn-primary {
    background: linear-gradient(45deg,#3b82f6,#6366f1) !important;
    border: none !important;
}

.btn-success {
    background: linear-gradient(45deg,#00ff87,#22c55e) !important;
    border: none !important;
}

.btn-danger {
    background: linear-gradient(45deg,#ff4d4f,#ef4444) !important;
    border: none !important;
}

.btn-warning {
    background: linear-gradient(45deg,#f59e0b,#f97316) !important;
}

/* ========================================
   TABLE
======================================== */

.table {
    background: #020617 !important;
    border-radius: 12px !important;
}

.table thead {
    background: linear-gradient(45deg,#3b82f6,#8b5cf6) !important;
}

.table th {
    color: #fff !important;
    border-bottom: none !important;
}

.table td {
    border-color: #1e293b !important;
}

.table-hover tbody tr:hover {
    background: #0f172a !important;
}

/* ========================================
   INPUT
======================================== */

.form-control {
    background: #020617 !important;
    border: 1px solid #1e293b !important;
    color: #fff !important;
    border-radius: 10px !important;
}

.form-control:focus {
    border-color: #6366f1 !important;
    box-shadow: 0 0 10px rgba(99,102,241,.3) !important;
}

/* ========================================
   SEARCH BAR
======================================== */

.search-bar input {
    background: #020617 !important;
    border: 1px solid #1e293b !important;
}

/* ========================================
   DROPDOWN
======================================== */

.dropdown-menu {
    background: #0f172a !important;
    border: 1px solid #1e293b !important;
}

/* ========================================
   ALERT
======================================== */

.alert {
    background: #0f172a !important;
    border: 1px solid #1e293b !important;
}

/* ========================================
   BADGE
======================================== */

.badge-success {
    background: linear-gradient(45deg,#00ff87,#22c55e) !important;
}

.badge-danger {
    background: linear-gradient(45deg,#ff4d4f,#ef4444) !important;
}

/* ========================================
   PAGINATION
======================================== */

.page-link {
    background: #020617 !important;
    border: 1px solid #1e293b !important;
}

.page-item.active .page-link {
    background: linear-gradient(45deg,#3b82f6,#8b5cf6) !important;
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: #020617 !important;
    border-top: 1px solid #1e293b !important;
}

/* ========================================
   ANIMATION
======================================== */

.card,
.btn,
.sidebar-menu li a {
    transition: .3s !important;
}

/* ========================================
   CARD GAP
======================================== */

.border-light {
    padding: 10px !important;
}