/* EIMS Electrical Kits Styles */

/* Touch-friendly improvements */
.touch-target {
    min-height: 44px;
    min-width: 44px;
}

/* Mobile-optimized layout */
@media (max-width: 768px) {
    .mobile-spacing {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .btn-mobile {
        min-height: 48px;
        padding: 12px 16px;
        font-size: 16px;
    }
    
    .mobile-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .mobile-stack {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-text {
        font-size: 0.875rem;
    }
    
    .mobile-header {
        text-align: center;
    }
}

/* Prevent text selection on UI elements */
.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Smooth scrolling */
.smooth-scroll {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Print styles */
@media print {
    .no-print { 
        display: none !important; 
    }
    body { 
        background: white !important; 
    }
    .container { 
        max-width: none !important; 
    }
    .shadow-lg { 
        box-shadow: none !important; 
    }
    .border { 
        border: 1px solid #000 !important; 
    }
    .page-break { 
        page-break-before: always; 
    }
    .avoid-break { 
        page-break-inside: avoid; 
    }
}

