.error-message-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 40px 20px;
}

.error-message-box {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.error-icon {
    font-size: 60px;
    margin-right: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    color: #ff9800;
}

.error-content {
    flex: 1;
}

.error-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1.2;
}

.error-message {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.error-illustration {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.error-illustration i {
    font-size: 80px;
    color: #555;
    opacity: 0.6;
}

.error-suggestion {
    background-color: #252525;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid #feaf50;
}

.error-suggestion p {
    font-weight: 600;
    color: #feaf50;
    margin-bottom: 10px;
}

.error-suggestion ul {
    list-style-type: none;
    padding-left: 0;
}

.error-suggestion ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #e0e0e0;
}

.error-suggestion ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #feaf50;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.error-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.error-button i {
    margin-right: 8px;
    font-size: 16px;
}

.back-button {
    background-color: #303030;
    color: #fff;
}

.back-button:hover {
    background-color: #404040;
    transform: translateY(-2px);
}

.home-button {
    background-color: #feaf50;
    color: #000;
}

.home-button:hover {
    background-color: #e09d45;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.support-button {
    background-color: #303030;
    color: #fff;
    border: 1px solid #444;
}

.support-button:hover {
    background-color: #404040;
    color: #feaf50;
    transform: translateY(-2px);
}

/* Bordas coloridas com base no tipo de mensagem */
.warning {
    border-left: 4px solid #ff9800;
}

/* Animação de fade-in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-message-box {
    animation: fadeIn 0.5s ease-out;
}

/* Responsividade */
@media (max-width: 768px) {
    .error-message-box {
        flex-direction: column;
        padding: 20px;
    }

    .error-icon {
        margin-right: 0;
        margin-bottom: 20px;
        justify-content: center;
    }

    .error-title {
        font-size: 28px;
        text-align: center;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .error-title {
        font-size: 24px;
    }

    .error-message {
        font-size: 15px;
    }

    .error-illustration i {
        font-size: 60px;
    }
}