/* Auto-save status indicator */
.save-status {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 9999;
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.save-status.pending {
    background: #2196F3;
    color: white;
}

.save-status.pending::before {
    content: "⏳ ";
}

.save-status.success {
    background: #4CAF50;
    color: white;
}

.save-status.success::before {
    content: "✓ ";
}

.save-status.error {
    background: #f44336;
    color: white;
}

.save-status.error::before {
    content: "✗ ";
}
