body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    background-color: #4e148c;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 600;
    color: white !important;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
    border-radius: 5px;
}

.sidebar {
    background-color: #3d0e61;
    min-height: 100vh;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.list-group-item {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.8);
    border-left: 3px solid transparent;
}

.list-group-item:hover, .list-group-item.active {
    background: rgba(255,255,255,0.1);
    color: white;
    border-left-color: #97DFFC;
}

.list-group-item .badge {
    background-color: #858AE3 !important;
}

.stat-card {
    border-left: 4px solid #613dc1;
}

.progress-stats .progress-item {
    margin-bottom: 1.5rem;
}

.progress-stats .progress {
    height: 12px;
    background-color: #e9ecef;
}

.progress-bar {
    background-color: #858AE3;
}

.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.card-header {
    background-color: #613DC1;
    color: white;
    border-bottom: none;
}

.btn-primary {
    background-color: #613DC1;
    border: none;
}

.btn-primary:hover {
    background-color: #5829A7;
}

.btn-success {
    background-color: #8EB5F0;
    border: none;
    color: #3D0E61;
}

.btn-success:hover {
    background-color: #93CAF6;
    color: #3D0E61;
}

.btn-outline-primary {
    color: #613DC1;
    border-color: #613DC1;
}

.btn-outline-primary:hover {
    background-color: #613DC1;
    border-color: #613DC1;
    color: white;
}

.btn-outline-secondary {
    color: #461177;
    border-color: #461177;
}

.btn-outline-secondary:hover {
    background-color: #461177;
    border-color: #461177;
    color: white;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
    background-color: #97DFFC;
    color: #3D0E61;
}

.table th {
    background-color: #613DC1;
    color: white;
    border: none;
}

.badge {
    font-weight: 500;
}

.badge.bg-success {
    background-color: #8EB5F0 !important;
    color: #3D0E61;
}

.badge.bg-warning {
    background-color: #93CAF6 !important;
    color: #3D0E61;
}

.badge.bg-info {
    background-color: #97DFFC !important;
    color: #3D0E61;
}

.badge.bg-primary {
    background-color: #858AE3 !important;
}

.form-control:focus {
    border-color: #858AE3;
    box-shadow: 0 0 0 0.2rem rgba(133, 138, 227, 0.25);
}

.form-select:focus {
    border-color: #858AE3;
    box-shadow: 0 0 0 0.2rem rgba(133, 138, 227, 0.25);
}

.form-check-input:checked {
    background-color: #613DC1;
    border-color: #613DC1;
}

.form-range::-webkit-slider-thumb {
    background-color: #613DC1;
}

.form-range::-moz-range-thumb {
    background-color: #613DC1;
}

.input-group-text {
    background-color: #97DFFC;
    color: #3D0E61;
    border: 1px solid #93CAF6;
}

.valid-feedback {
    color: #8EB5F0;
}

.invalid-feedback {
    color: #858AE3;
}

.progress-bar.bg-warning {
    background-color: #93CAF6 !important;
}

.progress-bar.bg-info {
    background-color: #97DFFC !important;
}

.progress-bar.bg-success {
    background-color: #8EB5F0 !important;
}

.progress-bar.bg-primary {
    background-color: #858AE3 !important;
}

