.mensajes {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.mensaje {
    background-color: #f44336; 
    color: white;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.mensaje.success {
    background-color: #4CAF50;
}

.mensaje.info {
    background-color: #2196F3;
}

.mensaje.warning {
    background-color: #ff9800;
}

@media (max-width: 600px) {
    .mensajes {
        top: 10px;
        left: 5%;
        transform: none;
        width: 90%;
        min-width: 0;
        max-width: 95vw;
    }

    .mensaje {
        font-size: 15px;
        padding: 10px 8px;
        margin-bottom: 8px;
        border-radius: 4px;
        word-break: break-word;
        text-align: center; 
    }
}
