/* Toast Container */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Allow clicking through container */
}

/* Toast Item */
.school-erp-toast {
    background: #fff;
    color: #333;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid transparent;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.school-erp-toast.toast-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Toast Variants */
.school-erp-toast.toast-success {
    border-left-color: #2ecc71;
    background: #f0fff4;
    color: #1e7e34;
}

.school-erp-toast.toast-error {
    border-left-color: #e74c3c;
    background: #fff5f5;
    color: #c0392b;
}

.school-erp-toast.toast-info {
    border-left-color: #3498db;
    background: #f0f7ff;
    color: #2c3e50;
}

.school-erp-toast.toast-warning {
    border-left-color: #f1c40f;
    background: #fffcf0;
    color: #b7950b;
}

/* Icons (using CSS shapes/content if no icon font available) */
.toast-icon {
    font-size: 18px;
    line-height: 1;
}