/* ===========================
   MOBILE APP TOAST STYLE
   =========================== */

#toast-container {
    position: fixed;
    top: 26px;
    left: 50%;
   
    transform: translateX(-50%);
    z-index: 999999;
    pointer-events: none;
}

/* Toast card */
#toast-container > div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    max-width: 92vw;
    padding: 14px 18px;
    margin-bottom: 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
    animation: toastSlideDown .35s ease forwards;
    pointer-events: auto;
}

/* Icon */
#toast-container > div::before {
    content: "";
    width: 22px;
    height: 22px;
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* Animations */
@keyframes toastSlideDown {
    from {
        transform: translateY(-20px) scale(.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* SUCCESS */
.toast-success {
    background: linear-gradient(135deg, #34d399, #059669);
}
.toast-success::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17l-3.88-3.88L4 13.41 9 18.41 20 7.41 18.59 6z'/%3E%3C/svg%3E");
}

/* ERROR */
.toast-error {
    background: linear-gradient(135deg, #FF7B39, #dc2626);
}
.toast-error::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E");
}

/* INFO */
.toast-info {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
}
.toast-info::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M11 9h2V7h-2v2zm0 8h2v-6h-2v6zm1-15C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z'/%3E%3C/svg%3E");
}

/* WARNING */
.toast-warning {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}
.toast-warning::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z'/%3E%3C/svg%3E");
}

/* Title & message */
.toast-title {
    font-weight: 600;
    margin-bottom: 2px;
}
.toast-message {
    font-size: 13px;
    line-height: 1.4;
}

/* Close button */
.toast-close-button {
    position: absolute;
    right: 12px;
    top: 10px;
    font-size: 18px;
    opacity: .7;
}
.toast-close-button:hover {
    opacity: 1;
}

/* Progress bar */
.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: rgba(255,255,255,.4);
}
/* Mobile App Close Button */
.toast-close-button {
    
    display: none;
}

