        /* Dark theme */
        body {
          background-color: #121212;
          color: white;
          font-family: arial, helvetica, sans-serif;
          font-size:0.9em;
        }

        /* Banner Styling with split and curve on the top-left */
        .banner {
          background-color: #333;
          height: 100px;
          display: flex;
          justify-content: space-between;
          margin-bottom: 10px;
          position: relative;
        }

        /* Left Half of Banner */
        .banner-left {
          background-color: #006DA6;
          border-top-left-radius: 70px;
          padding-left: 70px;

        }

        /* Right Half of Banner */
        .banner-right {
          background-color: #006DA6;
        }
        .banner-inner{
          margin-top:15px;
          border-top:1px solid #DEFF00;
          width:100%;
          background-color:#333;
        }

        .banner-logo{ 
          font-size: 2em;
          text-align: right;
          padding-right: 20px;
          padding-top: 30px;
        }

        .banner-subtext{   
          text-align: right;
          padding-bottom: 20px;
          position: relative;
          margin-top: -12px;
          padding-right: 40px;
          text-transform: uppercase;
          font-size: 0.8em;
        }

        .highlight{
          color: #DEFF00;
          margin-left: -8px;
        }

        /* Main content styling */
        .main-content {
          background-color: #333;
          margin-bottom: 10px;
        }

        .title{
          background-color: #006DA6;
          text-transform: uppercase;
          letter-spacing: 1px;
          text-indent: 20px;
          color: #DEFF00;
          font-size: 1em;
          font-weight: bold;
          margin: 0px;
          padding: 0px;
          clear: both;
          display: block;
          line-height: 1em;
          margin-bottom: 10px;
        }

        .page-content{
          background-color: #555;
          padding:10px;
        }

        /* Navigation on the right */
        .nav-bar {
            background-color: #333;
            margin-bottom: 10px;
        }

        .nav-bar a{
          display: block;
          clear: both;
          font-size: 0.9em;
          text-transform: uppercase;
          margin-top: 1px;
          padding: 2px 0 0 25px;
          border: 0px;
          color: #FFFFFF;
          background: #006DA6 url(/images/icon_menu.png) no-repeat center left;
          background-position-y: 5px;
          line-height: 0.95em;
        }

        .nav-bar a:hover {
          color: #DEFF00;
          background: #00517C url(/images/icon_menu_on.png) no-repeat center left;
          text-decoration: none;
        }

        .forbidden-link{ 
          text-decoration: line-through !important; 
          color: #ff6060 !important;
        }

        /* Footer with curves on bottom-right */
        .footer, .nav-footer {
            background-color: #333;
            border-bottom-right-radius: 70px;
            padding: 20px;
        }

        /* Custom spacing between elements */
        .container {
            margin-top: 10px;
        }

        .space {
            margin-bottom: 10px;
        }

        /* Ensure the navigation footer is directly under the navigation */
        .nav-footer {
        margin-top: -6px;
        }

        /* Adjust the width of the main footer to match the content */
        .main-footer {
            width: 100%;
            background-color: #333;
            border-bottom-right-radius: 70px;
            padding: 20px;
            margin-top: 10px;
            text-align: center;
        }

        /* Center the layout horizontally */
        .main-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-direction: row;
        }

        /* Ensure navigation and content are aligned in columns */
        .col-md-8, .col-md-4 {
            padding-left: 10px;
            padding-right: 0;
        }

        .page-scroll-top {
          position: relative;
          width: 100%;
          text-align: right;
          background-color: #555;
          padding-right: 5px;
          padding-bottom: 5px;
        }

        .page-scroll-top a {
          display: block;
          height: 15px;
          background-image: url(/images/arrow_up_yellow.png);
          background-size: contain;
          background-repeat: no-repeat;
          background-position-x: right;
        }

        .page-scroll-top a:hover {
          background-image: url('/images/arrow_up_grey.png');
        }

.subHeading {
    padding-bottom: 10px;
    text-transform: uppercase;
    color: #DEFF00;
    display:block;
}

.content-section{
  margin-bottom:10px;
}

.error{
    color: #ff6060;
    font-weight: 800;
    font-size: 1.2em;
}

.blog-listing .subHeading{
  padding-bottom: 0;
}

.blog-link {
    text-decoration: none !important; /* Remove default underline on links */
    display: block; /* Ensure the link spans the full div */
}

.blog-listing {
    margin-bottom: 10px;
    border: 0px solid #333;
    transition: background-color 0.3s ease;
    padding: 10px;
    color: #fff;
}

.blog-link:hover{ text-decoration: none;  }

.blog-listing p{ margin-bottom: 0; }

.blog-link:hover .blog-listing {
    text-decoration: none;
    background-color: #333; /* Change to desired hover color */
}

.blog-link:hover .subHeading{ text-decoration: none; }

.blog-img{ text-align: center; }
.blog-img img{ max-width:100%; }


/* Headings Styling */
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  padding-bottom: 10px;
  text-transform: uppercase;
  color: #DEFF00;
  display: block;
  margin-bottom: 0.75rem;
}
.page-content h2 { 
  font-size: 1.75rem; 
  text-align: center;
  text-decoration: underline;
}
.page-content h3 { 
  font-size: 1.5rem; 
  text-align: center;
}
.page-content h4 { font-size: 1.25rem; }
.page-content h5 { font-size: 1rem; }
.page-content h6 { font-size: 0.9em; }

/* Code block styling */
.page-content pre {
  background-color: #212529; /* Darker background for code blocks */
  color: #DEFF00; /* Accent color for code text */
  border-radius: 3px;
  overflow-x: auto;
}
.page-content code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9rem;
}

/* Table styling */
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  color: #f8f9fa;
}
.page-content th,
.page-content td {
  border: 1px solid #111;
  padding: 10px;
  text-align: left;
}
.page-content thead {
  background-color: #111;
}
.page-content thead th{ 
  text-align:  center; 
  font-weight: 800;
}
.page-content tbody tr:nth-child(odd) {
  background-color: #222;
}
.page-content tbody tr:nth-child(even) {
  background-color: #333;
}

/* Links */
.page-content a {
  color: #39bbff; /* Bootstrap info color */
  text-decoration: underline;
}
.page-content a:hover {
  color: #79d1ff; /* Bootstrap success color */
}

/* Additional spacing */
.page-content > *:last-child {
  margin-bottom: 0;
}

figure{
  width: auto !important;
}
.image-style-align-center img{
    display:block;
    margin-left: auto;
    margin-right: auto;
}