/* _content/eucandidato/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-u9e33l94s6] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-u9e33l94s6] {
    flex: 1;
}

.top-row[b-u9e33l94s6] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-u9e33l94s6]  a, .top-row[b-u9e33l94s6]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-u9e33l94s6]  a:hover, .top-row[b-u9e33l94s6]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-u9e33l94s6]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-u9e33l94s6] {
        justify-content: space-between;
    }

    .top-row[b-u9e33l94s6]  a, .top-row[b-u9e33l94s6]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-u9e33l94s6] {
        flex-direction: row;
    }

    .top-row[b-u9e33l94s6] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-u9e33l94s6]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-u9e33l94s6], article[b-u9e33l94s6] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-u9e33l94s6] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-u9e33l94s6] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/eucandidato/Components/Pages/Curriculum.razor.rz.scp.css */
/* ============ TELA DE SUCESSO ============ */
.success-screen[b-kt6h85xtgb] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(145deg, #f6f9fc 0%, #e3ecf5 100%);
}

.success-card[b-kt6h85xtgb] {
    max-width: 600px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 2.8rem;
    padding: 3rem 2.5rem;
    box-shadow: 0 24px 48px -14px rgba(0, 20, 40, 0.25), 0 8px 24px -6px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: center;
    animation: fadeSlideUp-b-kt6h85xtgb 0.6s ease forwards;
}

@keyframes fadeSlideUp-b-kt6h85xtgb {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon[b-kt6h85xtgb] {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px -8px rgba(76, 175, 80, 0.4);
    animation: pulse-b-kt6h85xtgb 2s ease-in-out infinite;
}

@keyframes pulse-b-kt6h85xtgb {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.success-icon i[b-kt6h85xtgb] {
    font-size: 4rem;
    color: white;
}

.success-card h1[b-kt6h85xtgb] {
    font-size: 2rem;
    font-weight: 700;
    color: #0b1e2e;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.success-message-text[b-kt6h85xtgb] {
    font-size: 1.1rem;
    color: #4a5b6a;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.success-subtext[b-kt6h85xtgb] {
    font-size: 1rem;
    color: #4a5b6a;
    background: #f0f7ff;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border-left: 4px solid #6042ff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .success-subtext i[b-kt6h85xtgb] {
        color: #6042ff;
        font-size: 1.2rem;
    }

.success-details[b-kt6h85xtgb] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-item[b-kt6h85xtgb] {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid #e2eaf1;
    transition: all 0.3s ease;
}

    .detail-item:hover[b-kt6h85xtgb] {
        transform: translateY(-2px);
        box-shadow: 0 8px 16px -6px rgba(0, 0, 0, 0.08);
    }

    .detail-item i[b-kt6h85xtgb] {
        font-size: 1.5rem;
        color: #6042ff;
        display: block;
        margin-bottom: 0.5rem;
    }

    .detail-item span[b-kt6h85xtgb] {
        font-size: 0.85rem;
        color: #1f3345;
        font-weight: 500;
    }

.success-actions[b-kt6h85xtgb] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

    .success-actions .btn[b-kt6h85xtgb] {
        min-width: 180px;
        padding: 0.8rem 2rem;
    }

.success-footer[b-kt6h85xtgb] {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f2f5;
}

    .success-footer p[b-kt6h85xtgb] {
        font-size: 0.85rem;
        color: #7a8b9e;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .success-footer i[b-kt6h85xtgb] {
        color: #6042ff;
    }

/* Responsivo */
@media (max-width: 600px) {
    .success-card[b-kt6h85xtgb] {
        padding: 2rem 1.5rem;
    }

    .success-icon[b-kt6h85xtgb] {
        width: 80px;
        height: 80px;
    }

        .success-icon i[b-kt6h85xtgb] {
            font-size: 3rem;
        }

    .success-card h1[b-kt6h85xtgb] {
        font-size: 1.5rem;
    }

    .success-details[b-kt6h85xtgb] {
        grid-template-columns: 1fr;
    }

    .success-actions .btn[b-kt6h85xtgb] {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .success-card[b-kt6h85xtgb] {
        padding: 1.5rem 1rem;
        border-radius: 2rem;
    }

    .success-icon[b-kt6h85xtgb] {
        width: 60px;
        height: 60px;
    }

        .success-icon i[b-kt6h85xtgb] {
            font-size: 2.2rem;
        }

    .success-card h1[b-kt6h85xtgb] {
        font-size: 1.2rem;
    }

    .success-message-text[b-kt6h85xtgb] {
        font-size: 0.95rem;
    }

    .success-subtext[b-kt6h85xtgb] {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
        flex-wrap: wrap;
    }
}
