/* Simple Toast System */
.toast {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 99999;
    opacity: 0;
    transform: translateX(300px);
    transition: all 0.3s ease;
    max-width: 400px;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.success {
    border-color: #00c851;
}

.toast.error {
    border-color: #ff4444;
}

.toast.info {
    border-color: #33b5e5;
}

.toast.warning {
    border-color: #ffbb33;
}

/* Toast base */
.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 1;
    transition: opacity 0.5s;
    z-index: 99999;
    position: fixed;
    top: 30px;
    right: 30px;
    min-width: 220px;
    max-width: 400px;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    pointer-events: auto;
    background: #222b3a;
}

.toast-content[style*="opacity: 0"] {
    pointer-events: none;
    display: none !important;
}

.toast-content .toast-icon {
    font-size: 20px;
    margin-right: 8px;
    display: flex;
    align-items: center;
}

.toast-content i {
    font-size: 1.2rem;
}

.toast.success .toast-content i {
    color: #00c851;
}

.toast.error .toast-content i {
    color: #ff4444;
}

.toast.info .toast-content i {
    color: #33b5e5;
}

.toast.warning .toast-content i {
    color: #ffbb33;
}

/* Responsive design for toasts */
@media (max-width: 768px) {
    .toast {
        right: 10px;
        top: 10px;
        min-width: 280px;
        transform: translateX(320px);
    }
} 