/* AspireHR Management System - Custom Styles */

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.card-header {
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
}

.btn {
    border-radius: 4px;
    font-weight: 500;
}

.table {
    font-size: 0.9rem;
}

.table th {
    font-weight: 600;
    background-color: #f8f9fa;
}

.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
}

.alert {
    border-radius: 4px;
}

.form-control, .form-select {
    border-radius: 4px;
}

.modal-content {
    border-radius: 8px;
}

.list-group-item {
    border-left: 4px solid transparent;
}

.list-group-item-warning {
    border-left-color: var(--warning-color);
    background-color: #fff3cd;
}

/* Dashboard Cards */
.card.text-white {
    border-radius: 8px;
}

.card.text-white .card-body h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding: 0.5rem;
    }
    
    .card-body {
        padding: 1rem;
    }
}

/* Loading spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* Print styles for CV */
@media print {
    .navbar, .btn, .card-header, .no-print {
        display: none !important;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

