﻿.error-state {
    width: 100%;
    height: 100%;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    border: 2px dashed #fecaca;
    border-radius: 16px;
    background: #fef2f2;
    text-align: center;
}

    .error-state .error-icon {
        font-size: 36px;
    }

    .error-state .error-title {
        text-align: center;
        font-size: 18px;
        font-weight: 600;
    }

    .error-state .error-message {
        text-align: center;
        font-size: 14px;
        color: #666;
        max-width: 400px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.error-state-notion {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 260px;
    padding: 48px 32px;
    background: white;
    border-radius: 16px;
    border: 1px solid #fde2e2;
    animation: fadeIn .35s ease-out;
}

    .error-state-notion .error-icon {
        width: 72px;
        height: 72px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: #fff3f3;
        color: #dc2626;
        font-size: 30px;
    }

    .error-state-notion .error-title {
        text-align: center;
        font-size: 22px;
        font-weight: 700;
        color: #991b1b;
    }

    .error-state-notion .error-message {
        max-width: 500px;
        text-align: center;
        color: #64748b;
        line-height: 1.6;
        font-size: 14px;
    }