#notifications {
    max-width: 360px;
    width: calc(100% - 2rem);
    bottom: 1rem;
    right: 1rem;
    position: fixed;
    z-index: 100;
    list-style: none;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
}

.notify {
    width: 100%;
    margin-top: .5rem;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    background-color: #1C1E21;
    padding: .5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 1.25rem;
    font-size: 1rem;
    min-height: 1.5rem;
    line-height: 1.5rem;
    right: -50px;
    opacity: 0;
    transition: right .2s ease, opacity .2s ease, transform .2s ease;
}

/* Quando a notificação entra */
.open {
    right: 0;
    opacity: 1;
    transform: translateY(0);
}

/* Ícone da notificação */
.notify-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.notify-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.8;
}

/* Conteúdo da notificação */
.notify-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Título */
.notify-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: .3rem;
}

/* Mensagem */
.notify-message {
    font-size: 0.9rem;
    line-height: 1.4rem;
}

/* Efeito de hover */
.notify:hover {
    cursor: pointer;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* Cores para os tipos de notificação */
.notify-success { background-color:  var(--brand); }
.notify-error { background-color: var(--red); }
.notify-info { background-color: var(--info); }
.notify-warn { background-color:  var(--yellow); }

/* Animação para entrada da notificação */
@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.notify.open {
    animation: slideIn .2s ease-out;
}
