body {
    background-color: #0f0f13;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.bg-panel {
    background-color: #1a1a24;
}

.border-main {
    border: 1px solid #2a2a3a;
}

.text-accent {
    color: #7c3aed;
}

.btn-primary {
    background-color: #7c3aed;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #6d28d9;
}

.nav-item {
    padding: 0.75rem 1.25rem;
    color: #94a3b8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-item:hover, .nav-item.active {
    background-color: #1e1e2d;
    color: #7c3aed;
}

.card-img-thumb {
    width: 50px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.table-dark {
    width: 100%;
    border-collapse: collapse;
}

.table-dark th, .table-dark td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #2a2a3a;
}

.progress-bar {
    height: 8px;
    background-color: #2a2a3a;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #7c3aed;
    width: 0%;
    transition: width 0.3s ease;
}
