/* ==========================================================================
   AULAKIT SKELETON LOADER & MOTION UX ENGINE
   ========================================================================== */

@keyframes skeletonPulse {
    0% {
        background-color: rgba(255, 255, 255, 0.08);
        opacity: 0.6;
    }
    50% {
        background-color: rgba(255, 255, 255, 0.22);
        opacity: 1;
    }
    100% {
        background-color: rgba(255, 255, 255, 0.08);
        opacity: 0.6;
    }
}

.skeleton-box {
    animation: skeletonPulse 1.4s ease-in-out infinite;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    display: block;
}

.skeleton-text {
    height: 14px;
    margin-bottom: 8px;
    border-radius: 6px;
    width: 100%;
}

.skeleton-text-short {
    width: 60%;
}

.skeleton-title {
    height: 22px;
    margin-bottom: 12px;
    border-radius: 8px;
    width: 45%;
}

/* SKELETON PARA CARDS DE HABILIDADE BNCC */
.skeleton-bncc-container {
    background: rgba(15, 23, 42, 0.75);
    border: 1.5px solid rgba(56, 189, 248, 0.3);
    border-radius: 16px;
    padding: 16px;
    margin-top: 12px;
}

.skeleton-bncc-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 10px;
}

.skeleton-badge {
    width: 85px;
    height: 22px;
    border-radius: 6px;
}

/* SKELETON PARA TABELAS E DOCUMENTOS A4 */
.skeleton-table-container {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
}

.skeleton-table-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.skeleton-table-cell {
    flex: 1;
    height: 38px;
    border-radius: 8px;
    background: #e2e8f0;
    animation: skeletonPulse 1.4s ease-in-out infinite;
}

/* TEMA CLARO SKELETON OVERRIDES */
.theme-light .skeleton-box {
    background: #cbd5e1 !important;
}

.theme-light .skeleton-bncc-container {
    background: #ffffff !important;
    border-color: #cbd5e1 !important;
}

.theme-light .skeleton-bncc-card {
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
}

.theme-medium .skeleton-box {
    background: #cbd5e1 !important;
}

.theme-medium .skeleton-bncc-container {
    background: #ffffff !important;
    border-color: #cbd5e1 !important;
}

.theme-medium .skeleton-bncc-card {
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
}
