  
    
    ::-webkit-scrollbar {
      width: 3px;
      height: 3px;
    }

    ::-webkit-scrollbar-track {
      background: transparent;
    }

    ::-webkit-scrollbar-thumb {
      background-color: #ccc;
      
      border-radius: 3px;
    }

    
    * {
      scrollbar-width: thin;
      
      scrollbar-color: #ccc transparent;
      
    }

    body {
 background-color: var(--color-light);
    }

    .container {
      border: 0;
      width: 1080px;
      background: #fff;
      border-radius: 8px;
      display: flex;
      flex-direction: row;
      padding: 8px;
      margin: 4px auto;
    }

    header.title {
      background-color: #fff;
      width: 1080px;
      margin: 0 auto;
      padding: 8px;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }

    #headerUserBack {
      margin-right: 0;
    }

    #headerUserBack img {
      background: var(--header-bgcolor);
      padding: 8px;
      border-radius: 8px;
    }

    .setting {
      gap: 8px;
      background-color: #fff;
      border-radius: 3px;
      min-height: 45px;
      padding: 8px;
      display: flex;
      flex-direction: column;
      width: 350px;
    }

    .no_preview {
      font-size: 12px;
      line-height: 50px;

      width: 50px;
      display: inline-block;
      color: red;
      height: 50px;
    }


    .section .setting span {
      color: #fff;
    }

    .grid-item svg {
      width: 54px;
      height: 54px;
      color: var(--color-dark);
    }


    
    #file-list {
      margin-bottom: 8px;
      overflow-x: hidden;
      overflow-y: auto;
      padding: 0;
      list-style: none;
      margin-top: 8px;
      background-color: #fff;
      border-radius: 3px;
      height: calc(100vh - 136px);
      outline: 1.5px solid var(--color-dark);
      width: 700px;
      margin-top: 0;
    }

    
    #file-list li {
      display: flex;
      align-items: center;
    }

    
    .file-list-header {
      position: sticky;
      top: 0;
      background: #f9f9f9;
      color: #000;
      z-index: 10;
      padding: 3px 0;
      font-weight: 500;
    }

    .file-list-header .col {
      flex: 1;
    }

    
    .col.index {
      flex: 0 0 50px;
    }

    .col.preview {
      flex: 0 0 100px;
    }

    .col.name {
      flex: 1;
    }

    .col.orig-size,
    .col.status,
    .col.new-size,
    .col.actions {
      flex: 1;
    }

    
    #file-list .col {
      padding: 0.5em;
      text-align: center;
      font-size: 14px;
    }

    img.thumb {
      width: 50px;
      height: 50px;
      border-radius: 3px;
      object-fit: cover;
    }

    #guidePage {
      width: 1080px;
      text-align: center;
      align-items: center;
      margin-top: 8px;
    }

    #convertAllBtn {
      border-radius: 3px;
      border: 0;
      background: #e91e63;
      color: #fff;
      width: 80px;
      height: 36px;
      cursor: pointer;
      font-size: 13px;
      visibility: hidden;
    }

    #downloadDiv {
      display: flex;
      justify-content: center;
      width: 100%;
    }

    #format {
      height: 22px;
      text-align: center;
      font-weight: 700;
      color: var(--color-black);
    }

    .col.actions a {
      text-decoration: none;
    }

    #settingBox fieldset {
      border: 1px solid #ccc;
      border-radius: 5px;
      margin: 8px 0;
      height: 40px;
      border: 1px solid #ccc;
      border-radius: 5px;
      padding: 8px;
      font-size: 14px;
    }

    #settingBox fieldset legend {
      padding: 0 5px;
      font-weight: bold;
    }

    #settingBox label {
      align-items: center;
      display: flex;
      justify-content: space-between;
      margin: 0 5px;
    }

    #convertAllBtn {
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 36px;
      background-color:  var(--black-90);
      color: white;
      cursor: pointer;
      border-radius: 3px;
      border: 1px solid  var(--black-90);
      transition: all 0.3s ease;
    }

    #convertAllBtn:hover {
      transform: scale(1.03);
      background-color:  var(--black-90);
    }

    #convertAllBtn:disabled {
      background-color: #999;
      cursor: default;
      border: 0;
    }

    .upload-label {
      margin: 0 auto;
      margin-bottom: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 245px;
      height: 60px;
       background-color: var(--black-90);
      color: white;
      cursor: pointer;
      border-radius: 3px;
    }

    #inputFiles {
      display: none;
      padding: 8px;
      align-items: center;
      justify-content: space-between;
      background-color: #fff;
      border-radius: 3px;
      flex-direction: column;
      outline: 1px solid #aaa;
      border-radius: 3px;
      background-color: #fafafa;
    }

    .grid-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 0;
      width: 60%;
      margin: 0 auto;
    }

    .grid-container .grid-item {
      padding: 3px;
      text-align: center;
      margin-top: 48px;
    }

    .grid-container .grid-item p {
      font-size: 16px;
      line-height: 20px;
      margin-top: 4px;
      color: #333;
    }

    .image_title {
      font-size: 45px;
      margin-bottom: 16px;
        margin-top: 16px;
      font-weight: 700;
    }

    .image_title div {
      font-size: 16px;
      color: #666;
      margin: 8px 16px;
      line-height: 23px;
      font-weight: normal;
    }

    section.panel {
      display: none;
      width: 100%;
      justify-content: space-between;
    }

    .outputBox {
      padding: 8px;
      font-size: 14px;
      outline: 1px solid #aaa;
      border-radius: 3px;
      background-color: #fafafa;
      margin: 8px 0;
      display: none;
    }

    .outputBox div {
      height: 28px;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      border-bottom: 1px solid #eee;
      align-items: center;
      margin: 0;
      padding: 0;
      border-bottom: 0;
    }

    #downloadButton {
      width: 80px;
      height: 28px;
      background-color: var(--color-black);
      color: white;
      cursor: pointer;
      border-radius: 3px;
      border: 0;
      margin-left: 8px;
    }

    
    @media screen and (orientation: portrait) {
      header.title {
        width: 98%;
        padding: 1%;
      }

      #convertAllBtn:hover {
        transform: unset;
        background-color: var(--color-purple);
      }

      .container {
        width: 98%;
        padding: 1%;
      }

      section.panel {
        flex-direction: column;
        justify-content: flex-start;
        overflow: hidden;
      }

      .image_title {
        font-size: 36px;
      }

      .upload-label {
        margin-bottom: 36px;
      }

      .setting {
        height: 400px;
        margin: 1%;
        padding: 0;
        width: 98%;
        gap: 8px;
        outline: 0;
      }

      #inputFiles {
        width: calc(100% - 16px);
        padding-left: 8px;
        padding-top: 8px;
      }

      #settingBox fieldset {
        margin: 0;
      }

      .outputBox {
        margin: 0;
        padding: 8px;
      }

      #format {
        width: 65px;
      }

      #settingBox fieldset {
        height: 40px;
      }

      #file-list {
        width: calc(100% - 4px);
        border: 2px solid var(--color-dark);
        outline: 0;
      }

      .grid-container {
        width: 90%;
      }

      #convertAllBtn:disabled {
        width: 100%;
        margin: 3px auto;
        background-color: #999;
        cursor: default;
        border: 0;
      }

      #file-list .index,
      #file-list .name {
        display: none;
      }

      #file-list .col {
        padding: 0.5em 0;
        font-size: 12px;
      }

      #downloadDiv {
        display: flex;
        justify-content: center;
        width: 100%;
      }

      #settingBox {
        width: 100%;
      }

      .grid-container .grid-item {
        padding: 3px;
        text-align: center;
        margin-top: 54px;
      }

      .grid-container .grid-item p {
        font-size: 13px;
      }

      .button_box {
        width: 100%;
        margin: 0 auto;
      }

      #guidePage {
        width: 100%;
        margin: 0 auto;
        margin-top: 0;
      }

      .grid-container .grid-item {
        margin-top: 12px;
      }

      .grid-container .grid-item p {
        font-size: 13px;
      }
    }
 
