/* Utility CSS Classes - Wrestling Lucha Party */
/* These classes replace inline styles for better maintainability */

/* Map loading overlay */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 8px;
}

.map-loading-text {
    margin-top: 15px;
    color: #333;
    font-weight: 500;
}

/* Error message styling */
.error-message {
    color: var(--color-error, #f44336);
}

.error-message h3 {
    margin-bottom: 15px;
}

.error-message p {
    margin-bottom: 10px;
}

.btn-error {
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--color-error, #f44336);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-error:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Booking page utility classes */
.availability-panel {
    margin-top: 10px;
    position: relative;
    z-index: 1000;
}

.payment-action-container {
    margin-top: 20px;
}

.balance-payment-section {
    margin-top: 10px;
}

.express-link {
    margin-top: 10px;
}

/* Ensure content is not hidden behind navbar on all devices */
body {
    padding-top: 0;
}

.booking-container {
    padding-top: 120px;
}

.contact-page {
    padding-top: 120px;
}

.lookup-container {
    margin-top: 120px;
}

/* Mobile responsive adjustments */
@media screen and (max-width: 768px) {
    .booking-container {
        padding-top: 100px;
    }
    
    .contact-page {
        padding-top: 100px;
    }
    
    .lookup-container {
        margin-top: 100px;
    }
    
    .map-overlay {
        border-radius: 4px;
    }
    
    .map-loading-text {
        font-size: 0.9rem;
    }
}

/* Tablet responsive adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .booking-container {
        padding-top: 110px;
    }
    
    .contact-page {
        padding-top: 110px;
    }
}
