/* My Ascon - Additional Custom Styles */

/* File upload area */
.upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.upload-area:hover, .upload-area.dragover {
    border-color: #F97316;
    background: #FFF7ED;
}

/* Priority indicators */
.priority-urgent { border-left: 4px solid #ef4444; }
.priority-tinggi { border-left: 4px solid #eab308; }
.priority-sedang { border-left: 4px solid #3b82f6; }
.priority-rendah { border-left: 4px solid #9ca3af; }

/* Loading spinner */
.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #F97316;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mobile bottom nav (optional enhancement) */
@media (max-width: 768px) {
    .mobile-bottom-safe {
        padding-bottom: env(safe-area-inset-bottom);
    }
}
