﻿.error-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.error-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.error-title {
    font-size: 2rem;
    margin: 0;
    color: #e53e3e;
}

.error-icon {
    color: #e53e3e;
}

.error-content {
    margin-bottom: 30px;
}

.error-message {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.error-actions {
    margin-top: 20px;
}

.error-container .btn-primary {
    width: auto;
}

.error-details {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #718096;
}

.error-details code {
    font-family: monospace;
    background-color: #f7fafc;
    padding: 2px 4px;
    border-radius: 3px;
}