/* Genbrug InfoKlub - Custom Styles */

/* Offentlig tilmeldingsform */
.signup-card {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.signup-card .card-header {
    border-radius: 12px 12px 0 0;
    background-color: #198754;
    color: white;
}

/* Admin navbar badges */
.badge.bg-success.fs-6 {
    font-weight: 500;
}

/* DEV badge */
.badge.bg-warning {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Afdelingsvælger */
.department-selector .form-select {
    min-width: 180px;
}

/* Tabeller i admin */
.table-admin th {
    background-color: #f8f9fa;
    white-space: nowrap;
}

/* Afmeldingsside */
.unsubscribe-card {
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive tilpasninger */
@media (max-width: 768px) {
    .badge.bg-success.fs-6 {
        font-size: 0.75rem !important;
    }
}
