.web-toast {
    min-width: 300px;
    padding: 16px 20px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 6px solid #ccc;
    pointer-events: auto;
}

.web-toast.show {
    transform: translateX(0);
}

.web-toast-icon {
    font-size: 20px;
}

.web-toast-content {
    flex: 1;
}

.web-toast-title {
    font-weight: 700;
    font-size: 14px;
    color: #1A1A1A;
    margin-bottom: 2px;
    display: block;
}

.web-toast-message {
    font-size: 13px;
    color: #666;
}

.web-toast.success { border-left-color: #50CD89; }
.web-toast.success .web-toast-icon { color: #50CD89; }

.web-toast.error { border-left-color: #F1416C; }
.web-toast.error .web-toast-icon { color: #F1416C; }

.web-toast.info { border-left-color: #FFC93C; }
.web-toast.info .web-toast-icon { color: #FFC93C; }

/* Custom Confirm Modal Styles */
.confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.confirm-overlay.show {
    opacity: 1;
}

.confirm-modal {
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
}

.confirm-overlay.show .confirm-modal {
    transform: scale(1);
}

.confirm-icon {
    width: 60px;
    height: 60px;
    background: #FFF8DD;
    color: #FFC93C;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.confirm-title {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.confirm-message {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.confirm-actions {
    display: flex;
    gap: 12px;
}

.confirm-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.confirm-btn-cancel {
    background: #F3F6F9;
    color: #7E8299;
}

.confirm-btn-cancel:hover {
    background: #E4E6EF;
}

.confirm-btn-confirm {
    background: #FFC93C;
    color: #1A1A1A;
}

.confirm-btn-confirm:hover {
    background: #FFB800;
    box-shadow: 0 4px 12px rgba(255, 201, 60, 0.3);
}

