﻿.error-glass-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 18px 15px;
    margin: 10px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-height: 160px;
    text-align: center;
    /*display: flex;
    flex-direction: column;
    justify-content: center;*/
}

    .error-glass-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    }

.error-logo-wrap {
    margin-bottom: 12px;
}

.error-logo {
    max-height: 100px;
    max-width: 100%;
    object-fit: contain;
}


.error-message {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
}
