/* Toast notification container */
.toast-container-84f6fcf1 {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

body.admin-bar .toast-container-84f6fcf1 {
    top: calc(var(--wp-admin--admin-bar--height, 32px) + 20px);
}
@media screen and (max-width: 782px) {
    body.admin-bar .toast-container-84f6fcf1 {
        top: 66px;
    }
}

.toast-84f6fcf1 {
    min-width: 280px;
    max-width: 380px;
    background: #ffffff;
    color: #333333;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-left: 4px solid #4a6ee0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    opacity: 0;
}

.toast-84f6fcf1.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-84f6fcf1.hide {
    transform: translateX(120%);
    opacity: 0;
}

.toast-content-84f6fcf1 {
    flex-grow: 1;
}

.toast-title-84f6fcf1 {
    font-weight: 600;
    color: #111111;
    margin-bottom: 2px;
}

.toast-desc-84f6fcf1 {
    color: #666666;
    font-size: 13px;
}

.toast-close-84f6fcf1 {
    background: none;
    border: none;
    color: #aaaaaa;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.toast-close-84f6fcf1:hover {
    color: #333333;
}
