/**
 * Frontend CSS - Minimal Utility Styles Only
 * Author: Tobalt — https://tobalt.lt
 *
 * NOTE: All booking form styles are inline in booking-form.php to prevent theme conflicts
 */

/* Loading Overlay - Used by JavaScript */
.pm-loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.pm-loading[style*="display: block"],
.pm-loading[style*="display:block"] {
    display: flex !important;
}

.pm-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #607d8b;
    border-radius: 50%;
    animation: pmSpin 1s linear infinite;
}

@keyframes pmSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Empty State */
.pm-empty {
    padding: 30px;
    text-align: center;
    color: #999;
}

/* Notice Messages */
.pm-notice {
    padding: 15px;
    border-radius: 4px;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
