/* Code to change page width START */
.container_12 {
    width: 1200px;
}
.s1_grid_12{
    width: auto;
}
@media only screen and (max-width: 1199px) and (min-width: 600px){
.container_12 {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1200px;
    min-width: 600px;
}}
@media only screen and (max-width: 616px){
.container_12 {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 600px;
    min-width: 320px;
    display: block;
}}
/* Code to change page width END */ 

/* Code to remove poster/admin name and date from blog posts and recent blog posts gadgets START */
.boxInfoContainer h5
{ display: none;}

.WaGadgetRecentBlogPosts .gadgetStyleBody ul li .author {
 display: none;
}
.WaGadgetRecentBlogPosts ul li .date
{ display: none; 
}

/* Code to remove poster/admin name and date from blog posts and recent blog posts gadgets END */


/* Code to change Horizontal menu more items arrow END */

.WaPlaceHolder .WaPlaceHolderFooter ul li 
{ color: #FFFFFF;
}

/* TEST TEST TEST */

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
  background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

/* Fix Breadcrumb Link for Ratio */
.WaGadgetBreadcrumbs ul li.last {
  color: #00666c !important; /* Darker teal for 4.5:1 contrast */
}

/* Menu Arrows */
li.dir.open > .item > a .dropdown-arrow {
	transform: rotate(180deg);
}

/* Skip to Main content Style */
.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  background: #FEE550;  /* Your hover color or any color */
  color: #4c4c4c;
  padding: 8px 12px;
  font-weight: bold;
  z-index: 10000;
  text-decoration: none;
  border-radius: 4px;
  /* no hiding, no movement */
}

.skip-link:focus,
.skip-link:hover {
  background: #99052a;  /* Slightly lighter on hover/focus */
  color: white;
}

/* Keyboard Accessibility */
.WaGadgetLoginButton .loginBoxLinkContainer .loginBoxLinkButton:focus {
  outline: 2px solid #005fcc;
  outline-offset: 2px;
}

/* H2 (once H4) Header to Original Colors */
h2.gadgetTitleH4 {
  color: initial;
}

/* Log In Button Border */
a.loginBoxLinkButton {
  border-radius: 8px;
  padding: 8px 16px;
}

/* Force Custom Focus Outline for All Browsers */
a.loginBoxLinkButton:focus-visible,
a.loginBoxLinkButton:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px #FFFFFF !important; /* white outline effect */
  border-radius: 8px;
}

/* Firefox fix to remove inner focus border */
a.loginBoxLinkButton::-moz-focus-inner {
  border: 0;
}