html {
    font-size: 14px;
}

body {
    background: #f4f6f9;
    font-family: "Segoe UI", sans-serif;
}

/* Sidebar */

.sidebar {
    background: #151a20;
    min-height: 100vh;
}

.sidebar-logo {
    padding: 20px;
    text-align: center;
}

.sidebar-logo img {
    max-width: 220px;
}

.sidebar .nav-link {
    color: #d6d6d6;
    border-radius: 10px;
    margin-bottom: 5px;
    padding: 12px 15px;
    transition: all .2s ease;
}

.sidebar .nav-link:hover {
    background: #242b35;
    color: white;
}

/* Main Area */

.content-area {
    padding: 25px;
}

/* Cards */

.dashboard-card {
    border: none;
    border-radius: 20px;
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: .2s;
    border-top: 4px solid #b9935a;
}
.dashboard-card:hover {
    transform: translateY(-3px);
}
.dashboard-card .card-body {
    padding: 25px;
}

.dashboard-number {
    font-size: 32px;
    font-weight: bold;
}

.dashboard-title {
    color: #666;
}

/* Tables */

.table {
    background: white;
}

.table thead {
    background: #f8f9fa;
}


.sidebar .nav-link.active {
    background: #c6a87d;
    color: white;
    font-weight: 600;
}

.user-header {
    background: white;
    padding: 10px 15px;
    border-radius: 10px;
    display: inline-block;
    text-align: right;
    margin-bottom: 20px;
}