/**
 * MOCAStudio Frontend Styles
 */

/* Preloader Styles */
#mocas-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

#mocas-preloader-logo {
    max-width: 150px;
    max-height: 150px;
    animation: mocas-pulse 1.5s infinite ease-in-out;
}

@keyframes mocas-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.9;
    }
}

/* Admin Styles can be moved to admin.css if needed */
.form-table th {
    font-weight: 500;
}