/* Custom Sexy Toasts */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sexy-toast {
    min-width: 300px;
    max-width: 400px;
    background: rgba(15, 15, 25, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md, 12px);
    border-left: 4px solid var(--border-color, rgba(255,255,255,0.1));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.sexy-toast.hiding {
    transform: translateX(120%);
    opacity: 0;
}

.sexy-toast-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sexy-toast-content {
    flex-grow: 1;
}

.sexy-toast-title {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.sexy-toast-message {
    font-size: 0.85rem;
    color: #a0a0b0;
    line-height: 1.4;
}

.sexy-toast-close {
    background: none;
    border: none;
    color: #6b6b80;
    cursor: pointer;
    padding: 0;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.sexy-toast-close:hover {
    color: #ffffff;
}

/* Toast Themes */
.sexy-toast.success {
    border-left-color: #00ff88;
}
.sexy-toast.success .sexy-toast-icon {
    color: #00ff88;
}

.sexy-toast.error {
    border-left-color: #ef4444;
}
.sexy-toast.error .sexy-toast-icon {
    color: #ef4444;
}

.sexy-toast.info {
    border-left-color: #3b82f6;
}
.sexy-toast.info .sexy-toast-icon {
    color: #3b82f6;
}
