/* Custom Django Admin Styles */

/* Ensure proper layout */
#container {
    min-height: 100vh;
}

/* Fix potential layout issues */
.module {
    margin-bottom: 20px;
}

/* Improve readability */
.form-row {
    margin-bottom: 10px;
}

/* Custom branding */
#header {
    background: #1e3a8a;
}

#header h1 {
    color: white;
}

#header h1 a {
    color: white;
    text-decoration: none;
}

/* Button styling */
.default {
    background: #1e3a8a;
    color: white;
}

.default:hover {
    background: #1e40af;
}
