/* Shared styles for all error pages (401, 403, 404, 500) */

/* Full-page centering for Blank layout pages (401, 403) */
.err-page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: transparent;
    padding: 20px;
}

/* In-content centering for MainLayout pages (404, 500) */
.err-content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    background: transparent;
    padding: 20px;
}

/* Card */
.err-page-card {
    max-width: 460px;
    width: 100%;
    padding: 40px;
    text-align: center;
    border-radius: 16px;
    background: #f8f9fa;
}

/* Icon circle */
.err-icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Title */
.err-title {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Message */
.err-message {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Info box */
.err-info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f7fafc;
    padding: 16px;
    border-radius: 8px;
    text-align: left;
}

/* Action buttons row */
.err-action-row {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

/* Footer */
.err-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}
