/*  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");

body {
    background-color: #C0C0C0; /* Your desired background color */
}

@media screen and (max-width: 768px) {
	.top-active-users {
		display: none !important;
	}
}

.wrap {
    background-color: #F0F0F0; /* Forum box background */
    border-radius: 10px; /* Optional rounded corners */
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Optional shadow */
}

.headerbar {
    background-image: url('../images/your_custom_bg.jpg');
    background-size: cover;
    background-color: #993333;
}

.copyright {
  font-size: 12.5px;
  text-align: center;
  color: white;
}

#google_translate_element {
  position: fixed;
  bottom: 20px;
  left: 5px;
  z-index: 9999;
  background: white;
  padding: 5px 10px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.goog-te-gadget-simple {
  background-color: transparent !important;
  border: none !important;
}

/* ✅ Change subforum link color only in main forum list */
.forums a.subforum {
    color: #CC3300 !important; /* your custom color */
    font-size: 12px;
}

.forums a.subforum:hover {
    color: #ff4d00 !important; /* optional hover color */
}

/* ❌ Prevent color change in "top five" section */
.top_five a.subforum {
    color: inherit !important;
}

.postbody strong {
    color: #b31b00;
}

/* Change home page forum section heder background color */
.forabg .header {
    background-color: #993333 !important;
    padding-left: 10px;
    padding-top: 3px;
}
/*----------------------------------------------------------*/
/* Change newest posts section heder background color */
#top_five .list-inner {
    padding-left: 10px;
}

/* Change font style and size of Newest Posts */
#top_five .top_five a {
    font-family: 'Arial', sans-serif;  /* Choose your preferred font */
    font-size: 14px;                      /* Adjust size as needed */
    font-weight: normal;                 /* Optional: bold, lighter, etc. */
    color: #222;                         /* Optional: adjust text color */
}

#top_five .top_five .meta {
    font-size: 13px;                     /* For metadata like 'by author', etc. */
    color: #666;                         /* Optional: lighter color */
}

/*-------------------*/
/* Responsive layout for mobile */
@media screen and (max-width: 768px) {
	.top-active-users {
		display: none !important;
	}
	.newest-topics-title {
		width: 100% !important;
	}
}
/*-------------------------------------------------*/

/* Change home page background color of forum category section */
.forabg {
    background: #993333; /* Orange background */
}

/* Change color of forum titles */
a.forumtitle {
    color: #2C3E50; /* Deep red - change to any color you like */
    font-weight: bold;
}

/* Optional: Hover color effect */
a.forumtitle:hover {
    color: #E74C3C; /* Lighter red on hover */
    text-decoration: underline;
}

/* Change inside forum section heder background color */
.forumbg .header {
    background-color: #993333 !important;
    padding-left: 10px;
    padding-top: 3px;
}

/* Change background color of forum inside section */
.forumbg {
    background: #993333; /* Orange background */
}

/* Forum topic rows */
.topiclist .row {
    background-color: #F0F0F0; /* light red/pink background */
    transition: background-color 0.3s ease;
}

/* Hover effect */
.topiclist .row:hover {
    background-color: #ffffcc; /* slightly darker red/pink on hover */
}

/* --------------------------------------------- */
#page-footer {
    background-color: #2C3E50; /* Your desired background color */
    color: #000000;            /* Optional: text color */
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    }

/* Footer navbar container */
#page-footer .navbar {
    background-color: #2C3E50; /* Match or use a different shade */
    color: #ffffff; /* Default text color */
    border-bottom: 2px solid #ffc107;  /* Bottom border */
}

#page-footer a {
    color: #ffc107;             /* Optional: link color */
}

#page-footer a:hover {
    color: #000000;             /* Optional: link hover color */
}
/*--------------------------------------------------------*/
/* Change navbar background color */
.navbar {
    background-color: #2C3E50; /* Change to your desired color */
    border
}

/* Optional: Change text and icon colors inside navbar */
.navbar a {
    color: #ffffff; /* Text color for links */
}

.navbar a:hover {
    color: #ffc107; /* Hover color */
}
/*-------------------------------------------*/
/* Style the announcement section */
#phpbb_announcement_1 {
    background-color: #993333; /* Already set inline, but can be kept for fallback */
    font-size: 12px;           /* Adjust font size */
    color: #FFFFFF;            /* Default text color */
}

/* Style links inside the announcement */
#phpbb_announcement_1 a {
    color: #FFD700; /* Gold color for links */
}

/* Link hover effect */
#phpbb_announcement_1 a:hover {
    color: #000000; /* Light yellow on hover */
    text-decoration: none;
}
/*------------------------------------------------*/
.post {
    background-color: #E6E6E6; /* Light gray background for the entire post block */
}

.postbody {
    background-color: #E6E6E6; /* Inner post content background */
    border-radius: 5px; /* Optional: for rounded corners */
}
/*----------------------------------------------*/
.dropdown {
    background-color: #2C3E50; /* Change to your desired background color */
    color: #ffc107; /* Optional: change text color */
    border: 1px solid #ccc; /* Optional: border style */
}

.dropdown-contents a {
    color: #2C3E50; /* Ensures links inside dropdown stay readable */
}

.dropdown-contents a:hover {
    background-color: #ffc107; /* Optional: hover effect */
    color: #000000;
}
/*---------------------------------------*/
