@font-face {
    font-family: 'jetbrains';
    src: url(./JetBrainsMono-Light.ttf);
  }
  html,
  body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    box-sizing: border-box;
  }
  body {
    font-family: 'jetbrains';
    font-weight: 50;
    font-size: 15px;
    position: relative;
    padding-bottom: 60px; /* match the footer height */
  }
  
  .experience-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .experience-table th, .experience-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
  }
  
  
  .experience-table .expandable-content {
    display: none;
  }
  
  .experience-table .clickable-row {
    cursor: pointer;
  }
  
  .experience-table td:nth-child(1) {
    width: 10%;
  }
  
  .experience-table td:nth-child(2) {
    width: 20%;
  }
  
  .experience-table td:nth-child(3) {
    width: 60%;
  }
  
  .experience-table  {
    width: 100%;
    border-collapse: collapse;
  }
  
  .experience-table th, .experience-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
  }
  
  .experience-table th {
    background-color: white;
  }
  .details li{
    max-width: 1000px;
    word-wrap: break-word;
    margin-bottom: 10px;;
  }
  .gallery {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .gallery img {
    width: 150px;
    height: 150px;
    object-fit: scale-down;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .gallery img:hover {
    transform: scale(1.05);
  }

  .gallery video {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s;
  }

  .gallery video:hover {
    transform: scale(1.05);
  }
  
  /* Lightbox styles */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
  }
  .lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .lightbox-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #lightbox-video {
    display: none;
    max-width: 60%;
    max-height: 90vh;
    object-fit: contain;
    margin: auto;
  }

  #lightbox-img {
    display: none;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    margin: auto;
  }

  .lightbox-content.active {
    display: block !important;
  }
  
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close:hover {
    color: #bbb;
  }
  
  .footer {
    width: 100%;
    background-color: white;
  
    position: bottom;

    text-align: center;
  }
  
  footer {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 35px;       /* footer height */
    width: 100%;
    background-color: #f1f1f1;
    text-align: bottom;
    z-index: 999;       /* ensure it stays on top */
  }
  
  .links-table {
    width: 100%;
    border-color: black;
    border-width: 2px;
  }
  
  .links-table td {
  
    border: 1px solid black;
    padding: 5px;
  }
  
  .links-table a {
    text-decoration: none;
    color: black;
  
  }
  
  .links-table a:hover {
    text-decoration: underline;
  }
  
  .links-table td:nth-child(1) {
    width: 10%;
  }
  .links-table td:nth-child(2) {
    width: 10%;
  }
  .links-table td:nth-child(3) {
    width: 20%;
  }
  .links-table td:nth-child(4) {
    width: 30%;
  }
