/**
 * Registration Plugin Styles
 */

/* Calendar group category */
.calendar-group-category {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 700;
    margin-right: 4px;
}

/* PDF download link */
.terms-pdf-download {
    margin-top: 8px;
}

.terms-pdf-download a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #4b5563;
    text-decoration: none;
    padding: 4px 0;
}

.terms-pdf-download a:hover {
    color: #dc2626;
}

.terms-pdf-download .fa-file-pdf {
    color: #dc2626;
}

/* Form loading state */
.registration-form.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.registration-form.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4b5563;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Calendar responsive */
@media (max-width: 600px) {
    .calendar-grid {
        font-size: 0.75rem;
    }

    .calendar-day {
        min-height: 50px;
        padding: 2px;
    }

    .calendar-group {
        font-size: 0.65rem;
        padding: 2px 4px;
    }

    .calendar-group-count {
        display: none;
    }

}
