.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.notification-info {
    position: relative;
    width: 300px;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #ebffee;
    border-left: 5px solid #43f436;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    color: #2fd32f;
    animation: slideIn 0.3s ease-out;
}

.notification-error {
    position: relative;
    width: 300px;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #ffebee;
    border-left: 5px solid #f44336;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    color: #d32f2f;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    color: #d32f2f;
    font-weight: bold;
    background: none;
    border: none;
    font-size: 16px;
}