
.error-container {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 250px;
    z-index: 1000;
}

.error-message {
    background-color: #ffcc00;
    color: #153144;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    max-width: 250px;
    word-wrap: break-word;
    animation: slideIn 0.3s ease-out;
}
.error-message-icon {
        display: flex;
        align-items: center;
        margin-right: 10px;
    }
.error-message-close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateX(100%);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}
