/**
 * Vee Telecom Orbit - Global Toast Styles
 * 
 * @package VeeTelecomOrbit
 * @since 1.0.0
 */

#vtowp-toast-container {
    position: fixed;
    top: 32px;
    right: 0;
    z-index: 999999;
    pointer-events: none;
}

.vtowp-global-toast {
    position: relative;
    right: -400px;
    min-width: 300px;
    max-width: 450px;
    background: #1a1a2e;
    color: #fff;
    padding: 14px 20px;
    margin-bottom: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    pointer-events: auto;
    border-left: 4px solid;
}

.vtowp-global-toast.vtowp-toast-show {
    right: 20px;
}

/* Success Toast */
.vtowp-global-toast-success {
    border-left-color: #10b981;
    background: linear-gradient(135deg, #1a2e1a, #0f2a0f);
}

/* Error Toast */
.vtowp-global-toast-error {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, #2e1a1a, #2a0f0f);
}

/* Warning Toast */
.vtowp-global-toast-warning {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, #2e2a1a, #2a250f);
}

/* Info Toast */
.vtowp-global-toast-info {
    border-left-color: #3b82f6;
    background: linear-gradient(135deg, #1a2a3e, #0f1f2a);
}

.vtowp-toast-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.vtowp-toast-message {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.vtowp-toast-close {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.vtowp-toast-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .vtowp-global-toast {
        min-width: 280px;
        max-width: calc(100% - 40px);
        margin-right: 10px;
    }
    
    .vtowp-global-toast.vtowp-toast-show {
        right: 10px;
    }
}