﻿.not-found-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    padding: 2rem;
}

.not-found-content {
    text-align: center;
    max-width: 480px;
}

.not-found-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--tint-brand);
    color: var(--emi-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.not-found-code {
    font-size: 5rem;
    font-weight: 800;
    color: var(--dash-text);
    margin: 0;
    line-height: 1;
    background: var(--emi-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.not-found-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dash-text);
    margin: 0.75rem 0;
}

.not-found-message {
    font-size: 1rem;
    color: var(--dash-text-muted);
    margin: 0 0 2rem;
    line-height: 1.6;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--emi-brand);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.3);
    width: 80%;
}

    .btn-back-home:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(44, 90, 160, 0.4);
        color: white;
    }

.btn-go-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--dash-card-bg);
    color: var(--dash-text-muted);
    border: 1px solid var(--dash-border);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    justify-content: center;
    transition: all 0.2s ease;
    width: 80%;
}

    .btn-go-back:hover {
        background: var(--dash-bg);
        border-color: #cbd5e1;
        color: var(--dash-text);
    }

.not-found-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

@media (max-width: 575.98px) {
    .not-found-container {
        padding: 1.5rem;
    }

    .not-found-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-back-home,
    .btn-go-back {
        width: 100%;
        justify-content: center;
    }

    .not-found-code {
        font-size: 4rem;
    }

    .not-found-title {
        font-size: 1.25rem;
    }

    .not-found-message {
        font-size: 0.9375rem;
    }
}
