/*  phpBB3 Style Sheet
    --------------------------------------------------------------
	Style name:			prosilver (the default phpBB 3.3.x style)
	Based on style:
	Original author:	Tom Beddard ( http://www.subblue.com/ )
	Modified by:		phpBB Limited ( https://www.phpbb.com/ )
    --------------------------------------------------------------
*/

@import url("normalize.css?hash=48eb3f89");
@import url("base.css?hash=7c5543be");
@import url("utilities.css?hash=d8f72c42");
@import url("common.css?hash=a9741ba1");
@import url("links.css?hash=18286e16");
@import url("content.css?hash=be57a41d");
@import url("buttons.css?hash=56f0d25f");
@import url("cp.css?hash=50d868ab");
@import url("forms.css?hash=b64464fb");
@import url("icons.css?hash=64da33ce");
@import url("colours.css?hash=fcb2f289");
@import url("responsive.css?hash=87b53e08");


/* === Fullscreen override for phpBB === */

/* Main forum wrapper */
#wrap {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 2 !important;
}


/* Tables and content areas */
.forum, .post, .content, table {
    width: 100% !important;
    max-width: 100% !important;
}


/* === Remove horizontal scrollbars in phpBB fullscreen === */

/* Prevent horizontal overflow */
html, body {
    overflow-x: hidden !important;
}

/* Force tables and posts to wrap instead of overflow */
table, .post, .content {
    table-layout: auto !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
}

/* Code blocks and preformatted text */
.codebox pre {
    white-space: pre-wrap !important;   /* wrap long lines */
    word-wrap: break-word !important;
    max-width: 100% !important;
}
