/* Toast Notifications - KickersCup Dark Theme */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 400px;
}

.toast {
    background: rgba(26, 26, 26, 0.98);
    border: 1px solid var(--turquoise-border, rgba(56, 178, 172, 0.3));
    border-radius: 0.625rem;
    padding: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.21, 1.02, 0.73, 1);
    color: var(--text-light, #e2e8f0);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

.toast-hide {
    transform: translateX(400px);
    opacity: 0;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

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

.toast-message {
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--text-light, #e2e8f0);
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
    color: var(--text-light, #e2e8f0);
    padding: 0;
    margin-left: 0.5rem;
}

.toast-close:hover {
    opacity: 1;
}

/* Toast Types */
.toast-success {
    border-left: 4px solid #48bb78;
}

.toast-success .toast-icon {
    color: #48bb78;
}

.toast-error {
    border-left: 4px solid #f56565;
}

.toast-error .toast-icon {
    color: #f56565;
}

.toast-warning {
    border-left: 4px solid #ecc94b;
}

.toast-warning .toast-icon {
    color: #ecc94b;
}

.toast-info {
    border-left: 4px solid #4299e1;
}

.toast-info .toast-icon {
    color: #4299e1;
}

/* Responsive */
@media (max-width: 768px) {
    .toast-container {
        top: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
        max-width: none;
    }

    .toast {
        padding: 0.875rem;
    }

    .toast-message {
        font-size: 0.8125rem;
    }
}