/* ─────────────────────────────
      Alert Box Style (Notification Toast)
   ───────────────────────────── */

/* Slide-in Notification */
.notification {
    position: fixed;
    top: 20px;
    right: -400px;
    width: 340px;
    padding: 18px 20px;
    border-radius: 12px;
    color: white;
    font-size: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    z-index: 99999;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.notification.show {
    right: 20px;
}

.notification.success {
    background: #048258;
}

.notification.error {
    background: #f13535;
}

.notification.warning {
    background: #ffb700;
    color: rgb(0, 0, 0);

}

.notification .close {
    margin-left: auto;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
}

.notification .close:hover {
    opacity: 1;
}







