/* Estilo do painel de notificações */
.notification-container {
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.notification-container ul {
    list-style: none;
    padding: 0;
}

.notification-container li {
    background-color: #e9e9e9;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 7px;
    font-size: 16px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.notification-container a {
    color: red;
    text-decoration: none;
}

.notification-container a:hover {
    text-decoration: underline;
}
