/* Error Pages Styles */

.error-container {
    max-width: 600px;
    margin: 1rem auto;
    text-align: center;
}

.error-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.error-image {
    width: 250px;
    margin: 1.5rem 0;
}

.error-message {
    color: #555;
    font-size: 20px;
    margin-top: 1rem;
}

.error-description {
    color: #777;
    font-size: 16px;
    margin-top: 1rem;
    line-height: 1.5;
}

.error-back-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.5rem 1.5rem;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.error-back-button:hover {
    background-color: #0056b3;
}

