/**
 * Public styles for Nupsu Appointments
 */

/* Loading spinner */
.nupsu-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #4CAF50;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Print styles */
@media print {
    .form-actions {
        display: none;
    }
    
    .appointment-form-section {
        break-inside: avoid;
    }
}

/* Mänguhommik slot title styling */
.time-slot-option .slot-title {
    font-size: 0.9em;
    margin-top: 4px;
    font-weight: 500;
    line-height: 1.2;
}