/* Main styles for Dragon Con Photoshoots */

:root {
    --dc-primary: #1a1a1a;
    --dc-secondary: #d4af37;
    --dc-accent: #8b0000;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.navbar-brand {
    font-weight: bold;
    color: var(--dc-secondary) !important;
}

/* Form styles */
.location-checkboxes {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 1rem;
}

.form-check {
    margin-bottom: 0.5rem;
}

/* Alert styles */
.alert {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .location-checkboxes {
        max-height: 200px;
    }
}