/* Simple Statistics Overflow Fix - CSS Only */

/* Ensure all text wraps properly */
p, div, span {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Mobile-specific fixes */
@media (max-width: 768px) {
    /* Force text wrapping on small screens */
    body * {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Add breathing room to prevent cramped text */
    p, div {
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }
    
    /* Ensure badges and tags wrap nicely */
    .badge, .tag, [class*="badge"] {
        display: inline-block;
        margin: 0.25rem 0.25rem 0.25rem 0;
        white-space: nowrap;
    }
}