#author-kit-toast-container *:not(i)  {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif !important;
}

#author-kit-toast-container {
    position: fixed;
    bottom: 50px;
    left: 55%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: auto;
    max-width: 100%;
    pointer-events: none;
}

.author-kit-toast {
    display: flex;
    align-items: center;
    min-width: 150px;
    background-color: rgb(37, 37, 37);
    border-radius: 12px;
    padding: 14px 22px !important;
    font-size: 14px;
    color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
    opacity: 0;
    font-weight: 500;
    transform: translateY(100px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: auto;
    position: relative;
}

.author-kit-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.author-kit-toast.hide {
    transform: translateY(100px);
    opacity: 0;
}

.author-kit-toast i {
    font-size: 18px;
    margin-right: 10px !important;
}

.author-kit-toast.author-kit-success i {
    color: rgb(105, 250, 76);
}

.author-kit-toast.author-kit-error i {
    color: red;
}

.author-kit-toast.author-kit-performing i {
    color: blue;
}

.author-kit-toast-message {
    flex-grow: 1;
    word-break: break-word;
    text-align: center;
    font-weight: 600;
    color: #ffffff;
}

.author-kit-toast-close-btn {
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px !important;
    color: #888;
    border: 1px solid transparent;
}

.author-kit-toast-close-btn:hover {
    color: #555;
    background-color: rgb(167, 167, 167);
}
