:root {
    --primary-orange: #F29400; /* Assuming this is the brand color based on app */
    --primary-dark: #D68200;
    --secondary-bg: #f8f9fa;
    --text-dark: #212529;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    padding-top: 80px; /* Space for fixed navbar */
    min-height: 100vh;
}

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

.text-orange {
    color: var(--primary-orange) !important;
}

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

.btn-orange:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-outline-orange {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-outline-orange:hover {
    background-color: var(--primary-orange);
    color: white;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: var(--primary-orange);
}

.nav-pills .nav-link {
    color: #6c757d;
    font-weight: 500;
}

.small-lh {
    line-height: 1.2;
}

.card {
    transition: transform 0.2s ease-in-out;
}

/* 
.card:hover {
    transform: translateY(-2px);
} 
*/

.icon-bg {
    position: absolute;
    right: -10px;
    bottom: -10px;
    z-index: 0;
    transform: rotate(-15deg);
}

.icon-bg i {
    font-size: 5rem;
}

.fade-in {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link {
    cursor: pointer;
}

/* Status Colors */
.status-pending { color: #ffc107; font-weight: bold; }
.status-success { color: #198754; font-weight: bold; }
.status-error { color: #dc3545; font-weight: bold; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .navbar-brand span {
        font-size: 0.9rem;
    }
}
