/* PassMCQ Django Unfold Admin Custom Styles */

/* Custom accent colors matching the brand */
:root {
    --accent-primary: #22c55e;
    --accent-primary-hover: #16a34a;
}

/* Sidebar refinements */
.sidebar {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
}

/* Better table styling */
.table-container {
    border-radius: 0.75rem;
    overflow: hidden;
}

/* Card improvements */
.card {
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

/* Button enhancements */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-hover) 100%);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgb(34 197 94 / 0.4);
}
