/*  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=843d5d5f");
@import url("links.css?hash=18286e16");
@import url("content.css?hash=d0e24377");
@import url("buttons.css?hash=56f0d25f");
@import url("cp.css?hash=50d868ab");
@import url("forms.css?hash=9016b55c");
@import url("icons.css?hash=64da33ce");
@import url("colours.css?hash=fcb2f289");
@import url("responsive.css?hash=c9d32cba");
/* Container for the entire right side (Links + Search) */
.header-right-wrapper {
    float: right;
    text-align: right;
    margin-top: 10px;
    max-width: 60%; /* Prevents overlapping the logo */
}

/* Style for the Top Links */
.top-nav-links {
    display: block;
    margin-bottom: 8px; /* Space between links and search box */
    font-family: 'Lexend', sans-serif;
}

.top-nav-links a {
    display: inline-block;
    margin-left: 15px;
    font-size: 12px;
    font-weight: 550;
    color: #cedcf2;
    text-decoration: none;
}

.top-nav-links a:hover {
    text-decoration: underline;
}

/* Override default phpBB Search Box float so it sits inside our wrapper */
.header-right-wrapper #search-box {
    float: none !important;
    display: inline-block;
    margin-top: 0 !important;
    margin-right: 0 !important;
    box-shadow: none; /* Optional: removes default shadow if needed */
}

/* Hide links on small mobile screens to prevent breaking layout */
@media (max-width: 700px) {
    .top-nav-links {
        display: none;
    }
}
