/**
 * Style for C-sisuper Widget
 */

.c-sisuper-wrapper {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.c-sisuper-wrapper iframe {
    border: none;
    background: transparent;
    max-width: 100%;
}

/* Maintenance Style */
.c-sisuper-maintenance {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin: 10px 0;
}

.maintenance-content h3 {
    margin: 15px 0 10px;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.maintenance-content p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.maintenance-icon {
    color: #f39c12;
    animation: wrench-shake 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes wrench-shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-5deg); }
    20%, 40%, 60%, 80% { transform: rotate(5deg); }
}

.maintenance-loader span {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f39c12;
    margin: 0 2px;
    animation: loader-dots 1.4s infinite ease-in-out both;
}

.maintenance-loader span:nth-child(1) { animation-delay: -0.32s; }
.maintenance-loader span:nth-child(2) { animation-delay: -0.16s; }

@keyframes loader-dots {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}

