/* Add your css code here */
/*
Variable Definitions:
  --r-bg: Sets the background color.
  --r-tx: Sets the text color.
  --r-h1: Sets the color for h1, h2, and h3 headings.
  --r-lk: Sets the link text color.
  --r-lk-h: Sets the hover color for link text.
  --r-br: Sets the border color.
  --r-bg-fr: Sets the background color for input forms.
  --r-tx-lk: Sets the menu link text color.
  --r-tx-lk-h: Sets the hover color for menu link text.
  --r-bg-lk: Sets the background color for menu links.
  --r-bg-lk-h: Sets the hover background color for menu links.
  --r-tx-bt: Sets the button text color.
  --r-tx-bt-h: Sets the hover color for button text.
  --r-bg-bt: Sets the button background color.
  --r-bg-bt-h: Sets the hover background color for buttons.
*/

/*
Regions Names, each region has an ID and a Class with the same name.
You can use .page-wrapper or #page-wrapper
#page-wrapper {}
#primary-sidebar-menu {}
#fixed-search-block {}
#popup-login-block {}
#header {}
#primary-menu {}
#welcome-text {}

#top-container {}
#top-box-first {}
#top-box-second {}
#top-box-third {}

#system-messages {}
#breadcrumb {}
#page-title {}

#main-container {}
#sidebar-box-first {}
#sidebar-box-main {}
#sidebar-box-second {}

#bottom-container {}
#bottom-box-first {}
#bottom-box-second {}
#bottom-box-third {}
#bottom-box-fourth {}

#footer-container {}
#footer-box-first {}
#footer-box-second {}
#footer-box-third {}

#footer-menu {}
#copyright {}

Examples:

#page-wrapper {
  background-color: var(--r-bg);
  color: var(--r-tx);
  border-color: var(--r-br);
}

h1, h2, h3 {
  color: var(--r-h1);
}

a:not(li.nav__menu-item a) {
  color: var(--r-lk);
  color: var(--r-lk-h);
}

input:not(.button) {
  background-color: var(--r-bg-fr);
}

li.nav__menu-item a {
  color: var(--r-tx-lk);
  background-color: var(--r-bg-lk);
}

li.nav__menu-item a:hover {
  color: var(--r-tx-lk-h);
  background-color: var(--r-bg-lk-h);
}

button:not(li.nav__menu-item button) {
  color: var(--r-tx-bt);
  background-color: var(--r-bg-bt);
}

button:not(li.nav__menu-item button):hover {
  color: var(--r-tx-bt-h);
  background-color: var(--r-bg-bt-h);
}
https://www.drupal.org/docs/extending-drupal/themes/contributed-themes/solo/instructions-for-developers-on-using-colors-in-solo-theme
*/

@media (min-width: 61em) {
  .gin--horizontal-toolbar #toolbar-administration {
    z-index: 5000 !important;
  }
}

/* --- Embedded Remote Video -----*/
iframe:where(.media-oembed-content) {
  display: block;
  width: 100%; 
  height: auto;
  aspect-ratio: 16 / 9;
}

.field--name-field-media-oembed-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.media-oembed-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

h1.page-title-text {
  color: aliceblue;
  font-size: calc(2 * var(--solo-px24));
  line-height: calc(2 * var(--solo-px28));
}

.header-and-title {
  background: linear-gradient(to bottom, #0b0b0b, #a5a5a3);
}

.main-container {
  display:flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-logo-img {
  max-width:150px;
 }

.lab-table {
  width:100%;
  margin-bottom: 5px;
  border-collapse: separate !important;
  /* horizontal <length> | vertical <length> */
  border-spacing: 0 30px;
 }
 
.lab-table tr {
  border:none;
 }

.lab-table td {
  /* top right bottom left */
  padding: 10px;
 }

.lab-table th {
   border-right:3px solid; 
   padding:10px;
   width:5%; 
   vertical-align:top; 
   text-align:right;
 }

.number-cell {
  border-right:3px solid; 
  padding:10px;
  width:5%; 
  vertical-align:top; 
  text-align:right;
  font-weight: bold;
 }

.lab-section-toc {
  font-weight:bold;
}

.lab-subsection-toc {
  padding-left: 2em;
}

.toolbar-icon-gamification-admin::before {
  content: "\f12e"; /* Unicode for FontAwesome fa-puzzle */
  font-family: "Font Awesome 6 Free"; /* Adjust based on the version */
  font-weight: 900; /* For solid icons */
  margin-right: 5px; /* Add spacing between the icon and text */
}
