#toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-message {
    width: 330px;
    min-height: 80px;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 10px 15px;
    background-color: #ffffff;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 15px;
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.35s ease;
}

.toast-message.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-message .wave {
    position: absolute;
    transform: rotate(90deg);
    left: -31px;
    top: 32px;
    width: 80px;
}

.toast-message .icon-container {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-left: 8px;
}

.toast-message .icon {
    width: 17px;
    height: 17px;
}

.toast-message .message-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-grow: 1;
    min-width: 0;
}

.toast-message .message-text,
.toast-message .sub-text {
    margin: 0;
    cursor: default;
}

.toast-message .message-text {
    font-size: 17px;
    font-weight: 700;
}

.toast-message .sub-text {
    font-size: 14px;
    color: #555;
    overflow-wrap: anywhere;
}

.toast-message .cross-icon-button {
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    line-height: 0;
    cursor: pointer;
}

.toast-message.success {
    color: #269b24;
}

.toast-message.success .wave {
    fill: #04e4003a;
}

.toast-message.success .icon-container {
    background-color: #04e40048;
}

.toast-message.success .icon,
.toast-message.success .message-text {
    color: #269b24;
}

.toast-message.error {
    color: #d10d0d;
}

.toast-message.error .wave {
    fill: #fc0c0c3a;
}

.toast-message.error .icon-container {
    background-color: #fc0c0c48;
}

.toast-message.error .icon,
.toast-message.error .message-text {
    color: #d10d0d;
}

.toast-message.warning {
    color: #db970e;
}

.toast-message.warning .wave {
    fill: #ffa30d3a;
}

.toast-message.warning .icon-container {
    background-color: #ffa30d48;
}

.toast-message.warning .icon,
.toast-message.warning .message-text {
    color: #db970e;
}

.toast-message.info {
    color: #124fff;
}

.toast-message.info .wave {
    fill: #4777ff3a;
}

.toast-message.info .icon-container {
    background-color: #4777ff48;
}

.toast-message.info .icon,
.toast-message.info .message-text {
    color: #124fff;
}

.toast-message .cross-icon {
    width: 18px;
    height: 18px;
    color: #555;
    cursor: pointer;
}