/***
    Minimal scoped reset for .top-content-wrapper
    Only resets the most essential properties to avoid breaking existing styles
***/

/* Preferred box-sizing value */
.top-content-wrapper *,
.top-content-wrapper *::before,
.top-content-wrapper *::after {
    box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
.top-content-wrapper {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

/* For images to not be able to exceed their container */
.top-content-wrapper img {
    max-inline-size: 100%;
    max-block-size: 100%;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
.top-content-wrapper input,
.top-content-wrapper textarea {
    -webkit-user-select: auto;
    user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
.top-content-wrapper textarea {
    white-space: revert;
}