.toastify.on.toastify-right.toastify-top {
    max-height: 400px !important;
    overflow: auto !important;
    overflow-x: clip !important;
}

.toastify.on.toastify-right.toastify-top::-webkit-scrollbar {
    width: 10px;
}

.toastify.on.toastify-right.toastify-top::-webkit-scrollbar-track {
    background: #ad9f9f;
    border-radius: 6px;
}

.toastify.on.toastify-right.toastify-top::-webkit-scrollbar-thumb {
    background-color: #8f8989;
    border-radius: 6px;
    border: 1px solid #f1f1f1;
}

.toastify.on.toastify-right.toastify-top::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.5);
    width: 12px;
    border-radius: 20px;
}