/* --- OGEFEX MODERN TOAST CSS --- */

.og-toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
    font-family: 'Inter', sans-serif; 
}

.og-toast {
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    min-width: 340px;
    max-width: 420px;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 
        0 10px 40px -10px rgba(0,0,0,0.1), 
        0 0 0 1px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    transform: translateX(120%) scale(0.9);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
}

.og-toast.show {
    transform: translateX(0) scale(1);
}

.og-toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.og-toast-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.og-toast.success .og-toast-icon-box {
    background: rgba(46, 204, 113, 0.15);
    color: #27ae60;
}

.og-toast.error .og-toast-icon-box {
    background: rgba(231, 76, 60, 0.15);
    color: #c0392b;
}

.og-toast-text-group {
    display: flex;
    flex-direction: column;
}

.og-toast-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 2px;
}

.og-toast-msg {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.og-toast-close {
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #94a3b8;
    transition: 0.2s;
    margin-left: 10px;
}
.og-toast-close:hover { 
    background: #f1f5f9; 
    color: #0f172a; 
}

.og-toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
}

.og-toast-progress-bar {
    height: 100%;
    width: 100%;
    border-radius: 0 10px 10px 0;
}

.og-toast.success .og-toast-progress-bar { 
    background: linear-gradient(90deg, #2ecc71, #27ae60); 
}
.og-toast.error .og-toast-progress-bar { 
    background: linear-gradient(90deg, #e74c3c, #c0392b); 
}