/* Estilos das mensagens de notificação */
.status-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    animation: slideIn 0.5s forwards, fadeOut 0.5s 3s forwards;
}

/* ... (restante do CSS de notificações) ... */