/* Simple Center Notification - رسالة بسيطة في المنتصف */
.yc-toast-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    z-index: 99999;
    min-width: 280px;
    max-width: 420px;
    padding: 25px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.yc-toast-notification.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.yc-toast-notification.hiding {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
}

/* Overlay */
.yc-toast-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.yc-toast-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Content Section */
.yc-toast-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.yc-toast-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-text, #232331);
    margin: 0;
    line-height: 1.8;
    padding: 2px 0;
}

.yc-toast-message {
    font-size: 15px;
    font-weight: 400;
    color: var(--secondarytext, #444858);
    margin: 0;
    line-height: 1.8;
    padding: 2px 0;
}

/* Success Variant */
.yc-toast-notification.success .yc-toast-title {
    color: var(--uicolor3, #22c062);
}

/* Error Variant */
.yc-toast-notification.error .yc-toast-title {
    color: var(--negative, #db1133);
}

/* Warning Variant */
.yc-toast-notification.warning .yc-toast-title {
    color: #ffc107;
}

/* Info Variant */
.yc-toast-notification.info .yc-toast-title {
    color: var(--uicolor, #2496e1);
}