/* LOHMIA Accessibility Fixes - Touch Targets & Text Size */
/* Generated: 2025-12-18 */

/* Fix touch targets: minimum 44x44px for mobile accessibility */
@media (max-width: 768px) {
    button,
    a,
    [role="button"],
    input[type="submit"],
    input[type="button"],
    .btn,
    .clickable,
    [onclick] {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 16px;
    }
    
    /* Fix small text on mobile - minimum 12px */
    body {
        font-size: 14px;
    }
    
    small,
    .small,
    .text-muted,
    .text-secondary,
    .caption,
    .meta,
    footer,
    .footer {
        font-size: 12px !important;
    }
    
    /* Ensure readable table cells */
    td, th {
        font-size: 13px;
        padding: 10px 8px;
    }
    
    /* Links in navigation */
    nav a,
    .nav a,
    .sidebar a,
    .menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}
