.messages {
    position: fixed;
    top: 80px;
    right: 20px;
    width: auto;
    max-width: 300px;
    z-index: 9999;
}

.message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    opacity: 0;
    animation: slideIn 0.3s ease-out forwards, fadeOut 0.5s ease-out 3s forwards;
}

/* Colors */
.message.success {
    background-color: #e4f9e8;
    color: #227a37;
    border-left: 4px solid #3abb54;
}

.message.error {
    background-color: #ffe7e7;
    color: #a62222;
    border-left: 4px solid #e15555;
}

.message.warning {
    background-color: #fff6d8;
    color: #8a6d1d;
    border-left: 4px solid #e6c35c;
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateX(20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(20px);
    }
}
