/* =========================
GLOBAL PREMIUM TOAST
========================= */

.global-toast{

    position: fixed;

    top: 25%;

    left: 50%;

    transform: translateX(-50%);

    min-width: 340px;

    max-width: 420px;

    padding: 22px 26px;

    border-radius: 22px;

    backdrop-filter: blur(18px);

    color: white;

    z-index: 99999;

    opacity: 0;

    visibility: hidden;

    transition: all 0.35s ease;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.35);
}

.global-toast.show{

    opacity: 1;

    visibility: visible;

    transform:
        translate(-50%, -50%);
}

/* SUCCESS */

.global-toast.success{

    background:
        rgba(18, 45, 36, 0.95);

    border:
        1px solid rgba(76, 175, 80, 0.2);
}

/* ERROR */

.global-toast.error{

    background:
        rgba(60, 22, 22, 0.96);

    border:
        1px solid rgba(244, 67, 54, 0.2);
}

/* WARNING */

.global-toast.warning{

    background:
        rgba(56, 45, 18, 0.95);

    border:
        1px solid rgba(255, 193, 7, 0.2);
}

.toast-content{

    display: flex;

    align-items: center;

    gap: 15px;
}

.toast-icon{

    width: 48px;

    height: 48px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.2rem;

    flex-shrink: 0;
}

/* SUCCESS ICON */

.global-toast.success .toast-icon{

    background:
        rgba(76,175,80,0.12);

    color:
        #81c784;
}

/* ERROR ICON */

.global-toast.error .toast-icon{

    background:
        rgba(244,67,54,0.12);

    color:
        #ef5350;
}

/* WARNING ICON */

.global-toast.warning .toast-icon{

    background:
        rgba(255,193,7,0.12);

    color:
        #ffd54f;
}

.toast-title{

    margin: 0;

    font-size: 0.95rem;

    font-weight: 600;

    letter-spacing: 0.5px;
}

.toast-message{

    margin: 3px 0 0;

    font-size: 0.88rem;

    color: rgba(255,255,255,0.75);
}