.stateSection {
    width: 100%;
    height: 80vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    img {
        width: 30%;
        aspect-ratio: 4 / 3;
        border-radius: var(--radius-sm);
    }

    h1 {
        font-size: 3rem;
        font-weight: 900;
    }
}

.errorSection {
    h1 {

        span {
            color: var(--color-error);
        }
    }
}

.errorActions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.errorButton {
    padding: 0.9rem 1.2rem;
    align-self: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background-color: var(--color-button-secondary-bg);
    color: var(--color-button-secondary-text);
    cursor: pointer;
}

.errorButton:hover {
    background-color: var(--color-button-secondary-bg-hover);
}

.errorLink {
    text-decoration: none;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.errorLink:hover {
    color: var(--color-accent);
    text-decoration: underline;
}