:root {
    --primary-color: #4e73df;
    --secondary-color: #858796;
    --success-color: #1cc88a;
    --info-color: #36b9cc;
    --warning-color: #f6c23e;
    --danger-color: #e74a3b;
    --light-color: #f8f9fc;
    --dark-color: #5a5c69;
}

body {
    background-color: #f8f9fc;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #5a5c69;
}

.navbar {
    box-shadow: 0 .15rem 1.75rem 0 rgba(58,59,69,.15);
    background-color: #4e73df !important;
}

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

.card {
    border: none;
    box-shadow: 0 .15rem 1.75rem 0 rgba(58,59,69,.15);
    border-radius: 0.35rem;
    margin-bottom: 1.5rem;
}

.card-header {
    background-color: #f8f9fc;
    border-bottom: 1px solid #e3e6f0;
    font-weight: 700;
    color: #4e73df;
}

.btn-primary {
    background-color: #4e73df;
    border-color: #4e73df;
}

.btn-primary:hover {
    background-color: #2e59d9;
    border-color: #2653d4;
}

.table th {
    background-color: #f8f9fc;
    color: #4e73df;
    border-top: none;
}

.page-item.active .page-link {
    background-color: #4e73df;
    border-color: #4e73df;
}

.sidebar {
    min-height: 100vh;
}

/* Dashboard Cards */
.border-left-primary {
    border-left: .25rem solid #4e73df!important;
}
.border-left-success {
    border-left: .25rem solid #1cc88a!important;
}
.border-left-info {
    border-left: .25rem solid #36b9cc!important;
}
.border-left-warning {
    border-left: .25rem solid #f6c23e!important;
}

.text-gray-300 {
    color: #dddfeb!important;
}

.text-xs {
    font-size: .7rem;
}
