/* Error Page Layout */
body.error-page {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #1e1e2e;
    color: #e0e0e0;
    padding: 40px;
    line-height: 1.6;
}

/* Container & Typography */
.error-container {
    max-width: 800px;
    margin: 0 auto;
    background: #2a2a3e;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #dc2626;
}

.error-title {
    color: #ef4444;
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.error-title span {
    font-size: 28px;
}

.error-message {
    background: #1e1e2e;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ef4444;
    margin-bottom: 20px;
    white-space: pre-line;
    font-family: monospace;
    font-size: 14px;
}

.error-actions {
    display: flex;
    gap: 15px;
}

.error-actions a {
    background: #6366f1;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.error-actions a:hover {
    background: #4f46e5;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
}

.error-debug {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px dashed #4a4a5e;
    font-size: 12px;
    color: #9ca3af;
}

.error-debug pre {
    background: #111827;
    color: #e5e7eb;
    padding: 12px;
    border-radius: 6px;
    overflow-x: auto;
}