<style>
body {
  font-family:
    'Roboto Condensed', 'Roboto', Gotham, 'Helvetica Neue', Helvetica, Arial,
    sans-serif;
  font-size: 16px;
  color: black;
  height: 100%;
  min-height: 100%;
  background: #ffffff;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  margin: 0;

  * {
    box-sizing: border-box;
  }

  p {
    line-height: 1.6em;
    margin: revert;

    &:last-of-type {
      margin-bottom: 0;
    }
  }

  @media (max-width: 768px) {
    font-size: 16px;
  }
}

.workforce-program-page {
  --primary-color: #fed301;
  --secondary-color: #ffe680;
  --text-color: #000 !important;
  --secondary-text-color: #000;
  --hover-color: #000 !important;
  width: 100% !important;
}

.sltech-program-page {
  --primary-color: #0076bc;
  --text-color: #fff;
  --secondary-color: #e6f0ff;
  --secondary-text-color: #fff;
  --hover-color: #0076bc;
  width: 100% !important;
}

.admin-page {
  --primary-color: #0f4b90;
  --secondary-color: #fff;
  --text-color: #000;
  --secondary-text-color: #fff;
  --hover-color: #0f4b90 !important;
  width: 100% !important;
}

.header-sltech {
  background: #e6e6e6;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;

  @media (max-width: 768px) {
    padding: 0;
    margin-bottom: 0 !important;
  }
}

.menu-toggle {
  display: none;
  background: #0076bc;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 50%;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1001;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

  .bars {
    display: block;
    width: 20px;
    height: 3px;
    background-color: var(--secondary-text-color);
    position: relative;

    &::before,
    &::after {
      content: '';
      position: absolute;
      width: 20px;
      height: 3px;
      background-color: var(--secondary-text-color);
      left: 0;
    }

    &::before {
      top: -7px;
    }

    &::after {
      top: 7px;
    }
  }
}

.separator-line {
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
}

.full-width-page {
  .program-overview {
    p {
      font-size: 18px;
      margin-top: 20px;
    }
  }

  a {
    border-bottom: none;
    text-decoration: none;
    color: inherit;

    &:hover {
      border-bottom: none;
    }
  }

  video {
    width: 100%;
    border-radius: 10px;
  }

  .nav-item {
    padding: 0 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;

    > a {
      background-color: unset;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Roboto';
      font-weight: bold;
      padding-bottom: 2px;
    }
  }

  .dropdown {
    position: relative;
    display: inline-block;

    > a {
      background-color: unset;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Roboto';
      font-weight: bold;
      padding-bottom: 2px;
      cursor: pointer;

      &::after {
        content: '';
        border-right: 2px solid #000;
        border-bottom: 2px solid #000;
        width: 5px;
        height: 5px;
        transform: rotate(45deg);
        margin-top: -5px;
        margin-left: 5px;
      }
    }

    &:hover .dropdown-content {
      display: block !important;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #f1f1f1;
      min-width: 220px;
      box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
      z-index: 1;
      border-radius: 5px;
      overflow: hidden;
      top: 75%;
      left: 0;
      margin-top: 5px;

      a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        font-weight: normal;

        &:hover {
          background-color: #ddd;
        }
      }
    }
  }

  .main-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 40px 20px;
    gap: 40px;
    justify-content: center;

    @media (max-width: 768px) {
      margin: 0 auto;
    }

    &.accordion-block {
      @media (max-width: 1024px) {
        flex-direction: column;
      }
    }
  }

  .nav-container {
    position: relative;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
  }

  .navigation-links {
    display: flex;
    gap: 1px;
    border-radius: 15px;
    overflow: visible;
    transition: all 0.3s ease;
    justify-content: space-between;

    &.active {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
  }

  .flex-column {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .justify-content-left {
    justify-content: left;
  }

  .flex-row {
    display: flex;
    flex-direction: row;
    gap: 40px;

    @media (max-width: 768px) {
      flex-direction: column;
      gap: 10px;
    }

    & > * {
      width: 50%;

      @media (max-width: 768px) {
        width: 100%;
      }
    }

    ul {
      margin: 0;
    }
  }

  h1 {
    font-size: 45px;
    text-transform: uppercase;
    margin: 0;
    color: inherit;

    @media (max-width: 768px) {
      font-size: 27px;
    }
  }

  h2 {
    font-size: 26px;
    text-transform: uppercase;
    color: inherit;
    margin: 0;

    @media (max-width: 768px) {
      font-size: 22px;
    }
  }

  h3 {
    font-size: 21px;
    color: inherit;
    text-transform: none;
    margin: 0;

    @media (max-width: 768px) {
      font-size: 17px;
    }
  }

  h4 {
    margin: 0;
    font-size: 18px;
    color: inherit;
  }

  ul,
  ol {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
    margin-top: 10px !important;
  }

  .disclaimer {
    font-size: 10px !important;
  }

  .text-center {
    text-align: center;
  }

  .text-align-left {
    text-align: left;
  }

  .shrink-padding-20 {
    padding: 20px !important;
  }

  .shrink-top-bottom-padding-20 {
    padding: 20px 0 20px !important;
  }

  .collapse-margin-top {
    margin-top: 0 !important;
  }

  .collapse-padding {
    padding: 0 !important;
  }

  .collapse-top-padding {
    padding-top: 0 !important;
  }

  .collapse-bottom-padding {
    padding-bottom: 0 !important;
  }

  .collapse-top-bottom-padding {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .margin-top-0 {
    margin-top: 0 !important;
  }

  .margin-bottom-0 {
    margin-bottom: 0 !important;
  }

  .border-radius-10 {
    border-radius: 10px !important;
  }

  .margin-bottom-20 {
    margin-bottom: 20px !important;
  }

  .floating-buttons {
    position: fixed;
    top: 390px;
    right: 2px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .cta-button {
    background: var(--primary-color);
    color: var(--secondary-text-color);
    padding: 15px 30px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    border: 2px solid #fff;
    max-width: 200px;
    z-index: 2;

    &:hover {
      background: #fff;
      border: 2px solid var(--primary-color);
      color: var(--hover-color);
    }
  }

  .buttons-mobile {
    display: none;
  }

  .button {
    border-radius: 10px;
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: var(--secondary-text-color);
    text-decoration: none !important;
    font-weight: bold;
    border: 2px solid transparent;
    display: block;
    text-align: center;
    margin: 20px auto;

    &:hover {
      background-color: transparent;
      border: 2px solid var(--primary-color);
      color: var(--hover-color);
    }
  }

  .hero-section {
    .hero-image {
      height: 400px;
      width: 100%;
      display: block;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;

      &:before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 0;
      }

      @media (max-width: 768px) {
        height: 200px;
      }
    }

    .hero-title {
      padding: 20px;
      text-align: center;
      border-bottom: 10px solid var(--primary-color);
    }
  }

  .border-boxes {
    display: flex;
    gap: 40px;
    width: 100%;

    @media (max-width: 768px) {
      flex-wrap: wrap;
    }

    .no-border-separator {
      display: flex;
      flex-direction: column;
      gap: 40px;
      width: 50%;

      @media (max-width: 768px) {
        width: 100%;
      }

      .box-item {
        width: 100%;
      }
    }

    .box-item {
      width: 50%;
      border: 2px solid #000;
      border-radius: 10px;
      padding: 20px;

      &.third-width {
        width: calc(33.33% - 26px);

        @media (max-width: 768px) {
          width: 100%;
        }
      }

      &.qr-container {
        background-color: var(--primary-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px !important;

        img {
          max-width: 350px;
        }
      }

      &.full-width {
        width: 100%;

        .button {
          width: fit-content;
        }
      }

      @media (max-width: 768px) {
        width: 100%;
      }

      a {
        text-decoration: underline;
        margin: 10px 0;
      }

      p {
        margin: 10px 0;
      }

      ol {
        padding: 0 20px;
        margin: 0;
      }

      li {
        line-height: 1.6em;
      }

      img {
        width: 100%;
        border-radius: 10px;
        height: 100%;
      }

      &.no-border {
        border: none;
      }

      &.white-bg {
        background-color: #fff;
      }

      &.split-sections {
        justify-content: space-between;
      }

      &.video-box {
        min-height: 320px;

        iframe {
          border-radius: 10px;
        }
      }
    }
  }

  .full-width-border-top {
    width: 100%;
    border-top: 4px solid var(--primary-color);
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .full-width-primary-bg {
    margin-top: 40px;
    padding: 40px 20px;
    background-color: var(--primary-color);
    width: 100%;

    h2,
    p {
      color: var(--secondary-text-color);
    }

    .box-item {
      display: flex;
      flex-direction: column;
      gap: 10px;

      .button {
        align-self: flex-start;
        margin: 20px 0 0;
      }

      img {
        max-height: 200px;
        object-fit: cover;
        border-radius: 10px;
      }

      p {
        margin-top: 10px;
      }

      h2,
      p {
        color: inherit;
      }

      &.img-fit {
        img {
          width: fit-content;
        }
      }
    }

    @media (max-width: 768px) {
      padding: 30px 10px;
    }
  }

  @media (max-width: 768px) {
    .nav-item {
      padding: 0;
      width: 100%;

      a {
        font-size: 1.2rem;
        padding: 10px;
      }
    }

    .dropdown {
      width: 100%;

      > a {
        padding: 10px;
        background-color: #fff;
        width: 100%;
      }

      .dropdown-content {
        position: relative;
        display: block !important;
        margin-top: 0;
        box-shadow: none;
      }
    }

    .floating-buttons {
      display: none !important;
    }
  }

  hr {
    border-top: 2px solid var(--primary-color);
  }
}

#breadcrumb {
  h1 {
    display: none;
  }
}

#main-content h1:first-child {
  display: none;
}

.hero-title h1 {
  display: block !important;
}

.gray-box {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.contact-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

/* Mobile-only global rules that weren't nested before */
@media (max-width: 768px) {
  video {
    max-height: 300px;
    object-fit: cover;
  }

  .buttons-mobile {
    gap: 10px;
    flex-direction: column;
    color: white;
    display: flex;
    text-align: center;
    justify-content: space-evenly;

    &-format {
      color: white;
      background: #0076bc;
      padding: 5px;
    }
  }

  .menu-toggle {
    display: block;
  }

  .navigation-links {
    display: none !important;
    position: fixed;
    bottom: 80px;
    left: 20px;
    right: 20px;
    margin: 0;
    z-index: 1000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    background-color: #fff;

    &.active {
      display: flex !important;
    }
  }
}

/* Quick Info Boxes */
.full-width-page .quick-info-boxes {
  display: flex;
  gap: 20px;
  width: 100%;
}

@media (max-width: 768px) {
  .full-width-page .quick-info-boxes {
    flex-wrap: wrap;
  }
}

.full-width-page .quick-info-boxes .info-box {
  width: 20%;
  background-color: var(--primary-color);
  border-radius: 10px;
  color: var(--text-color);
  text-align: center;
  padding: 20px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .full-width-page .quick-info-boxes .info-box {
    width: calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .full-width-page .quick-info-boxes .info-box {
    width: 100%;
  }
}

.full-width-page .quick-info-boxes .info-box p {
  margin: 0;
}

.full-width-page .quick-info-boxes .info-box a {
  text-decoration: underline;
}

.full-width-page .quick-info-boxes .info-box .heading {
  font-weight: bold;
  text-transform: uppercase;
}

.full-width-page .quick-info-boxes .info-box .disclaimer {
  font-size: 10px;
}

.full-width-page .course-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
}

/* Course Cards */
.full-width-page .course-card {
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc(33.33% - 27px);
  flex: unset;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);

  &.full-width {
    width: 100%;
  }

  &.gray-bg {
    background-color: #ddd;
  }
}

.full-width-page .course-card .course-header {
  display: flex;
  padding: 0 0 10px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--primary-color);
}

@media (max-width: 1100px) {
  .full-width-page .course-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .full-width-page .course-card {
    width: 100%;
    flex: unset;
  }
}

.full-width-page .course-card .cost-bubble {
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: bold;
}

.full-width-page .course-card p {
  margin: 0;
}

.full-width-page .course-card p.large {
  font-size: 1.25em;
  line-height: 1.6em;
}

.full-width-page .course-card p span {
  font-weight: bold;
  margin-right: 10px;
}

.full-width-page .course-card p a:hover {
  text-decoration: underline;
}

/* TABLE STYLES */
.class-schedule {
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  border-collapse: separate;
  border-spacing: 0;
}

.class-schedule tbody {
  border-radius: 10px;
}

.class-schedule th {
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 20px;
}

.class-schedule th:first-child {
  border-radius: 8px 0 0 0;
}

.class-schedule th:last-child {
  border-radius: 0px 8px 0 0;
}

.class-schedule tr:nth-child(even) {
  background-color: #f9f9f9;
}

.class-schedule tr:last-of-type .session-header {
  border-radius: 0 0 0 8px;
}

.class-schedule tr:last-of-type td:last-of-type {
  border-radius: 0 0 8px 0;
}

.class-schedule td {
  border: 1px solid #ddd;
  padding: 12px;
}

.class-schedule td:before {
  content: attr(data-label);
  display: block;
  font-weight: bold;
}

.class-schedule .session-header {
  background-color: var(--secondary-color);
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .class-schedule .session-header {
    background-color: var(--primary-color);
    color: var(--text-color);
    border-radius: 8px 8px 0 0;
  }
}

.class-schedule ul {
  margin: 8px 0;
  padding-left: 20px;
}

/* Mobile Table Styles */
@media (max-width: 600px) {
  .class-schedule,
  .class-schedule thead,
  .class-schedule tbody,
  .class-schedule th,
  .class-schedule td,
  .class-schedule tr {
    display: block;
  }

  .class-schedule tbody {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .class-schedule th {
    display: none;
  }

  .class-schedule td {
    border: none;
    border-bottom: 1px solid #ddd;
    position: relative;
  }

  .class-schedule td:last-child {
    border-bottom: none;
  }

  .class-schedule tr {
    border-radius: 10px;
    background-color: #f9f9f9;
  }

  .class-schedule tr:last-of-type .session-header {
    border-radius: 10px 10px 0 0;
  }

  .class-schedule tr:last-of-type td:last-of-type {
    border-radius: 0 0 8px 0;
  }
}

/* staff page styles */
.staff-page {
  .hero-image {
    object-fit: contain;
  }

  .main-container {
    justify-content: unset !important;
    flex-direction: column;
    gap: 20px;
    padding: 50px 20px;
    border-top: 1px solid var(--text-color);

    &.no-border-top {
      border-top: none;
    }
  }

  .staff-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;

    @media (max-width: 1100px) {
      justify-content: space-between;
    }

    .staff-item {
      position: relative;
      width: calc((100% - 40px) / 3);
      border-radius: 10px;
      box-sizing: border-box;
      padding: 10px;
      box-shadow: rgba(0, 0, 0, 0.5) 0px 3px 5px 1px;
      display: flex;
      gap: 20px;
      min-height: 250px;
      max-height: 250px;
      overflow: hidden;

      @media (max-width: 1100px) {
        width: calc((100% - 40px) / 2);
      }

      @media (max-width: 768px) {
        width: 100%;
        max-height: unset;
        gap: 10px;
      }

      .staff-img {
        width: 35%;
        height: 100%;
        border-radius: 10px;
        background-size: cover;
        background-position: center;

        @media (max-width: 1100px) {
          width: 50%;
        }
      }

      &.dean-space {
        background-color: #80badd;
      }

      .staff-info {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 10px 0;
        width: 65%;
        z-index: 1;

        @media (max-width: 1100px) {
          width: 50%;
        }

        p {
          margin: 0;
        }

        h2 {
          text-transform: capitalize;
        }

        h3 {
          margin: 0;
          text-transform: capitalize;
          color: inherit;

          @media (max-width: 768px) {
            font-size: 20px;
          }
        }

        .top-content,
        .bottom-content {
          display: flex;
          flex-direction: column;
          gap: 5px;
          align-items: flex-start;
        }

        .staff-title {
          margin-bottom: 20px;

          &.large {
            font-size: 1.3em;

            @media (max-width: 768px) {
              font-size: revert;
            }
          }
        }

        a {
          text-decoration: underline;
        }
      }

      &::after {
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        top: 0;
        right: -15%;
        width: 50%;
        transform: rotate(45deg);
        background: url('https://slcc.edu/sltech-test/images/staff-images/bear.png');
        background-size: cover;
        opacity: 0.1;
        z-index: 0;
      }
    }

    .title-container {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
  }

  .lighter-weight {
    font-weight: normal;
  }
}

.download-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;

  .download-item {
    flex: 1;
    display: flex;
    background-color: white;
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    gap: 20px;
    justify-content: space-between;

    @media (max-width: 1024px) {
      width: calc(50% - 20px);
      flex: unset;
    }

    @media (max-width: 768px) {
      justify-content: unset;
    }

    .icon {
      min-height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: center;

      @media (max-width: 900px) {
        min-height: unset;
      }
    }

    a,
    h3 {
      margin: 0;
    }

    img {
      width: 100%;
    }
  }
}

.accordion-trigger-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
  user-select: none;
  list-style: none;
}

.accordion-container {
  width: 100%;
}

.accordion-trigger-container::-webkit-details-marker,
.accordion-trigger-container::marker {
  display: none;
}

.accordion-trigger {
  display: none;
  position: relative;
  transition: transform 0.25s ease;
  width: 20px;
  height: 3px;
  background-color: #000;

  &:before {
    content: '';
    width: 20px;
    height: 3px;
    transition: transform 0.15s ease;
    transform: rotate(90deg);
    display: block;
    background-color: #000;
  }
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.4s ease-out;
  will-change: grid-template-rows;
  opacity: 0;
  transition: opacity 0.35s ease 0.1s;
}

details[open] .accordion-content {
  grid-template-rows: 1fr;
  opacity: 1;
}

.accordion-content > * {
  min-height: 0;
}

details[open] .accordion-content {
  padding-bottom: 1rem;
}

details[open] .accordion-trigger {
  &:before {
    transform: rotate(180deg);
    top: 2px;
  }
}

@media (max-width: 1024px) {
  .accordion-trigger {
    display: block;
  }

  .accordion-trigger-container {
    cursor: pointer;
    pointer-events: auto;
    padding: 20px;
    border: 2px solid #000;
    border-radius: 10px;
    justify-content: space-between;
  }
}

@media (min-width: 1025px) {
  .accordion-trigger-container {
    cursor: default;
    pointer-events: none;
  }

  .accordion-content {
    display: block !important;
    grid-template-rows: 1fr !important;
    overflow: visible !important;
    opacity: 1 !important;
    transition: none !important;
    height: auto !important;
  }

  details.accordion-container::details-content {
    display: block !important;
    content-visibility: visible !important;
    overflow: visible !important;
  }
}

</style>