body {
    margin: 0;
    font-family: sans-serif;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    #height: 100vh;
    color: #fff;
  }
  
  .sequence-buttons {
    margin: 10px;
  }
  
  .sequence-buttons button {
    padding: 10px 20px;
    margin: 0 5px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 12px;
  }
  
  .slideshow-container {
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    touch-action: pan-y;
  }
  
  #slide-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
  }
  