
        /*Custom Toast Like Slack */

        .toast-container {
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        max-width: 350px;
        }

        .custom-toast {
        background-color: var(--bs-custom-bg-fill-dark, #222);
        color: var(--bs-custom-text-strong);
        border-left: 4px solid;
        border-radius: 6px;
        padding: 12px 16px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
        animation: slideIn 0.3s ease forwards;
        opacity: 0;
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 9999;
        pointer-events: auto;
        }

        .custom-toast-content {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        }

        .custom-toast i {
        font-size: 1.2rem;
        }

        .toast-progress {
        margin-top: 8px;
        height: 4px;
        border-radius: 2px;
        background: var(--bs-custom-red)!important;
        overflow: hidden;
        position: relative;
        }

        .toast-progress-bar {
        height: 100%;
        background-color: #fff; /* or your variable */
        width: 100%;
        animation-play-state: running;
        animation-fill-mode: forwards;
        animation-timing-function: linear;
        }

        .custom-toast-close {
        background: none;
        border: none;
        font-size: 1.1rem;
        color: var(--bs-custom-sidenav-hover-dark-white)!important;
        cursor: pointer;
        pointer-events: auto;
        }

        @keyframes toastProgress {
        from { width: 100%; }
        to { width: 0%; }
        }

        @keyframes slideIn {
        from {
        opacity: 0;
        transform: translateY(10px);
        }
        to {
        opacity: 1;
        transform: translateY(0);
        }
        }

        @keyframes slideOut {
        from {
        opacity: 1;
        transform: translateY(0);
        }
        to {
        opacity: 0;
        transform: translateY(10px);
        }
        }

        @keyframes shake {
        0%, 100% { transform: rotate(0deg); }
        20%, 60% { transform: rotate(-10deg); }
        40%, 80% { transform: rotate(10deg); }
        }

        .shake-icon {
        animation: shake 1.5s ease-in-out 1; /* increased duration */
        }

        /* JQ TOAST STYLES */

        .jq-toast-wrap {
        min-width: 350px;
        z-index: 9999;
        }

        .jq-toast-single {
        font-family: 'Open Sans', sans-serif;
        font-size: 14px;
        font-weight: 400;
        padding: 20px 15px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        position: relative;
        }

        .close-jq-toast-single {
        position: absolute;
        top: 3px;
        right: 7px;
        font-size: 22px;
        opacity: 0.7;
        color: var(--bs-custom-white-dark);
        cursor: pointer;
        }

        .jq-toast-single a {
        text-decoration: underline;
        font-weight: 700;
        font-size: 12px;
        color: var(--bs-custom-white-dark);
        }


        .jq-toast-flex {
        display: flex;
        align-items: flex-start;
        line-height: 1.5; /* spacing between lines */
        }

        .jq-toast-flex i {
        margin-right: 0.5rem;
        margin-top: 2px;
        font-size: 1rem;
        flex-shrink: 0;
        color: var(--bs-custom-white-dark)!important; /* 👈 add this line */
        }


        .jq-toast-flex span {
        flex: 1;
        }
