/* --- Global & Fonts --- */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.app-main {
    background-color: #fffbf6;
}

/* --- Auth (Guest) Styles --- */
.auth-bg {
    background: linear-gradient(135deg, #063D56 0%, #13848C 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 450px;
    padding: 40px;
}

.btn-primary-custom {
    background: #EC642C !important;
    border: none !important;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
    color: #fff !important;
}

.btn-primary-custom:hover {
    background: #d45625 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 100, 44, 0.4);
}

.auth-form-control {
    border-radius: 10px !important;
    padding: 12px !important;
    border: 1px solid #e1e1e1 !important;
    background-color: #f8f9fa !important;
}

.auth-form-control:focus {
    box-shadow: 0 0 0 4px rgba(19, 132, 140, 0.1) !important;
    border-color: #13848C !important;
}

.auth-logo {
    width: 150px;
    margin-bottom: 30px;
}/* --- Dashboard (AdminLTE 4) Styles --- */
/* --- Dashboard (AdminLTE 4) Styles --- */
:root {
    --lte-sidebar-width: 280px;
}

.app-sidebar {
    background-color: #063D56 !important;
}

/* Custom Nav Link Styling (#EC642C) */
.nav-sidebar .nav-item .nav-link {
    border-radius: 8px !important;
    margin: 4px 10px !important;
    padding: 10px 15px !important;
    transition: all 0.2s ease-in-out;
    color: rgba(255, 255, 255, 0.75) !important;
    display: flex;
    align-items: center;
}

.nav-sidebar .nav-item .nav-link i {
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
    margin-right: 10px;
}

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

/* Specific Active State for AdminLTE 4 (Handles Dark Theme) */
.nav-sidebar .nav-item .nav-link.active,
.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link.active,
[data-bs-theme=dark] .nav-link.active {
    background-color: #EC642C !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(236, 100, 44, 0.35) !important;
}

.nav-sidebar .nav-item .nav-link.active i {
    color: #fff !important;
}

/* Sidebar Brand Styling */
.sidebar-brand {
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    background-color: #063D56 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-link {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    width: 100%;
}

.brand-image {
    max-height: 32px;
    width: auto;
    margin-right: 10px;
}

.brand-text {
    font-size: 1.25rem;
    line-height: 1;
    color: #fff !important;
    font-weight: 700;
}

.app-content-header {
    padding: 1rem 0;
    /* background-color: #fff; */
    /* border-bottom: 1px solid rgba(0,0,0,0.05); */
    margin-bottom: 1.5rem;
}

.app-footer {
    background-color: #fff;
    border-top: 1px solid #eee;
}

/* Utils */
.text-custom-orange { color: #EC642C; }
.text-custom-teal { color: #13848C; }
.text-custom-dark { color: #063D56; }
.text-custom-green { color: #2F7B45; }

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .app-main, .app-header, .app-footer {
        margin-left: 0 !important;
    }
}
