.wrapper-component {
    display: contents; /*Class for components that wrap others so their DOM is still injected into the elements*/
}

.wrap-text {
    /* Allow breaking within words */
    overflow-wrap: break-word; /* modern standard */
    word-wrap: break-word; /* Legacy support for older browsers */
    /* Ensure text can break anywhere if needed */
    word-break: break-all; /* Break at any character if necessary */
    /* Optional: prevent horizontal scroll */
    white-space: pre-line;
}

