/*  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("../../prosilver/theme/normalize.css?hash=48eb3f89");
@import url("../../prosilver/theme/base.css?hash=7c5543be");
@import url("../../prosilver/theme/utilities.css?hash=d8f72c42");
@import url("../../prosilver/theme/links.css?hash=18286e16");
@import url("../../prosilver/theme/content.css?hash=d0e24377");
@import url("../../prosilver/theme/buttons.css?hash=56f0d25f");
@import url("../../prosilver/theme/cp.css?hash=50d868ab");
@import url("../../prosilver/theme/forms.css?hash=9016b55c");
@import url("../../prosilver/theme/icons.css?hash=64da33ce");
@import url("../../prosilver/theme/responsive.css?hash=c9d32cba");
@import url("common.css?hash=843d5d5f");
@import url("colours.css?hash=fcb2f289");

/* Navbar CSS..added by Musti */

nav {
          background-color: #12A3EB;
          overflow: hidden;
          font-size: 14px;
        }
        nav ul {
          list-style-type: none;
          margin: 0;
          padding: 0;
          display: flex;
          justify-content: space-around; /* Adjust as needed */
        }
        nav li {
          float: left; /* Or use display: inline-block */
        }
        nav a {
          display: block;
          color: blue;
          text-align: center;
          padding: 14px 16px;
          text-decoration: none;
        }
        nav a:hover {
          background-color: rgba(255,255,255,0.5);
        }