/* New */

body {
    background: #f4f7fb
}

.stat {
    background: linear-gradient(135deg, #111827, #374151);
    color: white
}

.btn,
.form-control,
.form-select {
    border-radius: 12px
}

.table {
    vertical-align: middle
}

.badge {
    border-radius: 20px
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a, #2563eb);
    color: white
}

.mobile-card {
    transition: .25s
}

.mobile-card:hover {
    transform: translateY(-4px)
}

@media(max-width:768px) {
    .table-responsive {
        font-size: 13px
    }

    .display-4 {
        font-size: 2rem
    }
}

/* Old*/
:root {
    --st-bg: #f5f7fb;
    --st-dark: #111827;
    --st-card: #fff
}

.navbar .nav-link {
    transition: 0.3s;
    font-weight: 500;
}

.navbar .nav-link:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff !important;
}

.navbar-brand {
    letter-spacing: 1px;
}

.navbar {
    backdrop-filter: blur(10px);
}

.card {
    border: 0;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, .08)
}

.stat {
    border-radius: 20px;
    padding: 18px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(15, 23, 42, .08)
}

.stat .num {
    font-size: 1.4rem;
    font-weight: 800
}

.table-responsive {
    border-radius: 16px
}

.btn {
    border-radius: 12px
}

.form-control,
.form-select {
    border-radius: 12px
}

.sidebar-link {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #111827
}

.sidebar-link:hover,
.sidebar-link.active {
    background: #111827;
    color: white
}

.mobile-scroll {
    overflow-x: auto
}

.badge-soft {
    background: #eef2ff;
    color: #3730a3
}

.landing-img {
    height: 210px;
    object-fit: cover
}

@media(max-width:768px) {
    .display-5 {
        font-size: 2rem
    }

    .stat {
        margin-bottom: 12px
    }

    .table {
        font-size: .86rem
    }

    .hide-mobile {
        display: none !important
    }
}