#toast-container {
    pointer-events: none;
}

#toast-container.toast-top-right {
    top: 18px;
    right: 18px;
}

#toast-container > .toast {
    position: relative;
    width: min(360px, calc(100vw - 32px));
    min-height: 52px;
    padding: 14px 18px 14px 52px;
    border-radius: 8px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    background-image: none !important;
    background-color: #ffffff;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.16);
    color: #111827;
    opacity: 1;
    overflow: hidden;
    pointer-events: auto;
}

#toast-container > .toast::before {
    position: absolute;
    left: 18px;
    top: 50%;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    transform: translateY(-50%);
}

#toast-container > .toast-success::before {
    content: "✓";
    background: #00987f;
}

#toast-container > .toast-error::before {
    content: "!";
    background: #ef4444;
}

#toast-container > .toast-warning::before {
    content: "!";
    background: #f59e0b;
}

#toast-container > .toast-info::before {
    content: "i";
    background: #2563eb;
}

#toast-container > .toast-success {
    border-left: 4px solid #00987f;
}

#toast-container > .toast-error {
    border-left: 4px solid #ef4444;
}

#toast-container > .toast-warning {
    border-left: 4px solid #f59e0b;
}

#toast-container > .toast-info {
    border-left: 4px solid #2563eb;
}

#toast-container .toast-title {
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 2px;
}

#toast-container .toast-message {
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}

#toast-container .toast-progress {
    height: 3px;
    opacity: 1;
    background-color: rgba(17, 24, 39, 0.18);
}

#toast-container > .toast-success .toast-progress {
    background-color: #00987f;
}

#toast-container > .toast-error .toast-progress {
    background-color: #ef4444;
}

#toast-container > .toast-warning .toast-progress {
    background-color: #f59e0b;
}

#toast-container > .toast-info .toast-progress {
    background-color: #2563eb;
}

@media (max-width: 575px) {
    #toast-container.toast-top-right {
        top: 12px;
        right: 12px;
        left: 12px;
    }

    #toast-container > .toast {
        width: 100%;
    }
}
