﻿.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 40px 16px;
    text-align: center;
}

.error-code {
    font-size: 96px; /* text-8xl */
    font-weight: 800; /* font-extrabold */
    color: #2563eb; /* text-blue-600 */
    margin-bottom: 16px;
}

.error-message {
    font-size: 24px; /* text-3xl */
    font-weight: 600; /* font-semibold */
    color: #1f2937; /* text-gray-800 */
    margin-bottom: 16px;
}

.error-description {
    color: #4b5563; /* text-gray-600 */
    margin-bottom: 32px;
    max-width: 28rem; /* max-w-md */
}

.home-button {
    display: inline-block;
    background-color: #2563eb; /* bg-blue-600 */
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .home-button:hover {
        background-color: #1d4ed8; /* hover:bg-blue-700 */
    }
