/* Custom Admin Styles for OJAS SOLUTIONS */

/* Brand Colors */
:root {
    --primary-orange: #E0703A;
    --primary-blue: #1E5AA8;
}

/* Jazzmin Customization */
.navbar-orange {
    background-color: var(--primary-orange) !important;
}

.sidebar-light-orange {
    background-color: #fff8f5 !important;
}

.sidebar-light-orange .nav-sidebar > .nav-item > .nav-link.active {
    background-color: var(--primary-orange) !important;
    color: white !important;
}

.brand-link {
    background-color: var(--primary-orange) !important;
}

.btn-primary {
    background-color: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
}

.btn-primary:hover {
    background-color: #c85e2e !important;
    border-color: #c85e2e !important;
}

.btn-info {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    color: white !important;
}

.page-item.active .page-link {
    background-color: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
}

a {
    color: var(--primary-blue);
}

a:hover {
    color: var(--primary-orange);
}

/* Form Focus States */
.form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(224, 112, 58, 0.25);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c85e2e;
}
