/* ==========================================================================
   PROPWISE INDIA
   TOAST COMPONENT
   ========================================================================== */

#toastContainer{

    position:fixed;

    right:24px;

    bottom:24px;

    display:flex;

    flex-direction:column;

    gap:12px;

    z-index:99999;

    pointer-events:none;

}

.toast{

    min-width:340px;

    max-width:420px;

    background:#ffffff;

    border-radius:16px;

    border-left:5px solid #2563eb;

    box-shadow:

        0 12px 32px rgba(15,23,42,.15);

    opacity:0;

    transform:translateY(25px);

    transition:

        opacity .25s ease,

        transform .25s ease;

    overflow:hidden;

}

.toast.show{

    opacity:1;

    transform:translateY(0);

}

.toast-content{

    display:flex;

    align-items:flex-start;

    gap:14px;

    padding:18px 20px;

}

.toast-icon{

    font-size:1.4rem;

    flex-shrink:0;

}

.toast-message{

    flex:1;

    color:#1e293b;

    font-size:.95rem;

    line-height:1.6;

    font-weight:500;

}

/* Success */

.toast-success{

    border-left-color:#16a34a;

}

/* Error */

.toast-error{

    border-left-color:#dc2626;

}

/* Warning */

.toast-warning{

    border-left-color:#f59e0b;

}

/* Info */

.toast-info{

    border-left-color:#2563eb;

}

/* Mobile */

@media (max-width:768px){

    #toastContainer{

        right:16px;

        left:16px;

        bottom:18px;

    }

    .toast{

        min-width:unset;

        width:100%;

        max-width:none;

    }

}