/**
 * SkillsPassport Centralized Loading Spinner
 * 
 * Provides the "golden standard" `Logo.gif` loading animation used across
 * the WOW Interests module and associated video players.
 * 
 * @package    local_wow
 * @copyright  2024 Skills Passport SA
 */

 @keyframes sp-logo-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.sp-logo-spinner {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.sp-logo-spinner img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    padding: 0 !important;
    margin: 0 !important;
}

/* Optional standard loading text styling often paired with it */
.sp-logo-spinner-text {
    margin-top: 16px;
    color: #6B7280;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
}
