/* Error Component */
.error-component {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    width: 100%;
    padding: 2rem;
}

.error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 500px;
    text-align: center;
    padding: 3rem 2rem;
    background-color: #f5f5f5;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.error-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.error-message {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.error-button {
    width: 100%;
}