/* ==================================================
   Toast Notification
   ================================================== */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.f16-toast {
    min-width: 280px;
    padding: 16px;
    margin-bottom: 10px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s;
    opacity: 0;
}

.f16-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.f16-toast.success { border-left: 5px solid #28a745; }
.f16-toast.error   { border-left: 5px solid #dc3545; }
.f16-toast.info    { border-left: 5px solid #0d6efd; }