#blazor-error-ui {
    background: #d32f2f;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 10000;
    display: none;
    color: white;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.error-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.error-message {
    flex: 1;
    min-width: 200px;
    font-weight: 500;
}

.error-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    margin: 0 0.25rem;
    transition: background-color 0.2s ease;
    font-weight: 500;
}

.error-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.error-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .error-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .error-btn {
        min-width: 120px;
    }
}