.bg-primary {
    background-color: #0d6efd !important;
}

body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.filter-box {
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid rgba(13, 110, 253, 0.2);
    backdrop-filter: blur(8px);
}

.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.08);
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0b5ed7;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(13, 110, 253, 0.2);
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(13, 110, 253, 0.05);
}

th {
    background-color: #0d6efd !important;
    color: white !important;
}

.modal-header {
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.table {
    border: 1px solid rgba(13, 110, 253, 0.2);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05);
    border-radius: 0.5rem;
    overflow: hidden;
}

.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .table-responsive {
        margin: 1rem 0.5rem;
        border: 1px solid rgba(13, 110, 253, 0.1);
    }
    
    th, td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9em;
    }
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-container {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
}

input:focus, textarea:focus {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2) !important;
}