
    body {
      font-family: Arial, sans-serif;
      background-color: #f4f4f4;
      color: #333;
      transition: background-color 0.3s, color 0.3s;
      margin: 0;
      padding: 0;
    }

    body.dark-mode {
      background-color: #333;
      color: #f4f4f4;
    }

    h1 {
      text-align: center;
      margin-top: 20px;
      margin-bottom: 30px;
    }

    ul {
      list-style-type: none;
      padding: 0;
      margin: 100px 0;
    }

    li {
      padding: 20px;
      border-radius: 10px;
      background-color: #b3d9ff;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
    }

    li:hover {
      background-color: #e6f2ff;
    }

    li a {
      color: #000;
      text-decoration: none;
      display: flex;
      align-items: center;
      width: 100%;
    }

    .preview-icon {
		width: 36px;
		height: 45px;
		margin-right: 20px;
		overflow: hidden;
    }
    .folder-icon {
      width: 45px;
      height: 36px;
      margin-right: 20px;
      overflow: hidden;
    }

    .preview-icon-video {
      width: 36px;
      height: 45px;
      margin-right: 20px;
      overflow: hidden;
    }

    .preview-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .file-info {
      display: flex;
      flex-direction: column;
    }

    .file-name {
      font-size: 24px;
      color: #000;
    }

    .file-size,
    .file-date {
      font-size: 20px;
      color: #777;
    }

    .toggle-container {
      position: absolute;
      top: 20px;
      right: 20px;
    }

    .toggle-label {
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .toggle-label span {
      font-size: 14px;
      margin-left: 5px;
    }

    .toggle-input {
      display: none;
    }

    .toggle-slider {
      width: 50px;
      height: 25px;
      background-color: #ccc;
      border-radius: 25px;
      position: relative;
      transition: background-color 0.3s;
    }

    .toggle-slider:before {
      content: "";
      position: absolute;
      width: 20px;
      height: 20px;
      background-color: #fff;
      border-radius: 50%;
      top: 2.5px;
      transition: left 0.3s;
    }

    .toggle-input:checked + .toggle-slider {
      background-color: #66bb6a;
    }

    .toggle-input:checked + .toggle-slider:before {
      left: calc(100% - 22.5px);
    }

    .logo {
      position: absolute;
      top: 10px;
      left: 10px;
      width: 64px;
      height: 64px;
      object-fit: contain;
      cursor: pointer;
    }

    .toggle-container {
      position: absolute;
      top: 20px;
      right: 20px;
    }

    .toggle-label {
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .toggle-label span {
      font-size: 14px;
      margin-left: 5px;
    }

    .toggle-input {
      display: none;
    }

    .toggle-slider {
      width: 50px;
      height: 25px;
      background-color: #ccc;
      border-radius: 25px;
      position: relative;
      transition: background-color 0.3s;
    }

    .toggle-slider:before {
      content: "";
      position: absolute;
      width: 20px;
      height: 20px;
      background-color: #fff;
      border-radius: 50%;
      top: 2.5px;
      left: 2.5px;
      transition: left 0.3s;
    }

    .toggle-input:checked + .toggle-slider {
      background-color: #66bb6a;
    }

    .toggle-input:checked + .toggle-slider:before {
      left: calc(100% - 22.5px);
    }

    .custom-button {
      position: absolute;
      top: 90px;
      left: 20px;
      background-color: rgba(0, 0, 0, 0.8);
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .custom-button:hover {
      background-color: rgba(0, 0, 0, 1);
    }
	
    .custom-button2 {
      position: absolute;
      top: 90px;
      right: 20px;
      background-color: rgba(0, 0, 0, 0.8);
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .custom-button2:hover {
      background-color: rgba(0, 0, 0, 1);
    }
    .back-arrow {
      margin-right: 5px;
    }

    .info-icon {
      position: absolute;
      top: 90px;
      right: 20px;
      font-size: 24px;
      color: #777;
      cursor: pointer;
    }

    .changelog-popup {
      position: absolute;
      top: 150px;
      right: 20px;
      padding: 20px;     
	  background-color: #333; 
      border: 1px solid #000;
      border-radius: 25px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	  z-index: 1;
	  display: none;
    }
    
	.changelog-entry {
		margin-bottom: 20px;
	}
	
	.changelog-header {
		font-size: 24px;
	}

	.changelog-entry strong {
		display: block;
		font-size: 18px;
		margin-bottom: 5px;
		font-weight: bold;
	}

	.changelog-entry p {
		margin: 0;
		font-size: 16px;
	}
	
	.show {
		display: block;
	}
