.error-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #ff4444;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
    max-width: 400px;
    animation: slideIn 0.3s ease-in-out;
}

.error-notification.show {
    display: block;
}

.error-notification .error-title {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.error-notification .error-description {
    font-size: 0.9em;
    margin-bottom: 10px;
}

.error-notification .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2em;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}