
    body {
      font-family: 'Nunito', sans-serif;
    }
    .navbar {
      padding: 0.8rem 1rem;
    }
    #downloadLink {
      display: flex;
      justify-content: center;
      margin-bottom: 25px;
    }
    .container {
      max-width: 800px;
    }
    .form-label, h1 {
      font-weight: 600;
    }
    #convertBtn {
      background-color: #dc3545;
      border: none;
    }
    #convertBtn:hover {
      background-color: #c82333;
    }
    #audioPlayer audio {
      width: 100%;
      border-radius: 5px;
    }
    #alert {
    margin-top: 25px;
    }
    footer {
      background-color: #000;
      color: white;
      padding: 10px;
      text-align: center;
      margin-top: 50px;
    }
    /* Giao diện sáng/tối tự động dựa theo chế độ của thiết bị */
    @media (prefers-color-scheme: dark) {
      body {
        background-color: #121212;
        color: #ffffff;
      }
      .form-select, .form-control, .btn-secondary {
        background-color: #2c2c2c;
        color: #ffffff;
        border-color: #444;
      }
      footer {
        background-color: #181818;
      }
    }
    @media (prefers-color-scheme: light) {
      body {
        background-color: #ffffff;
        color: #000000;
      }
    }
    
    .history-item {
      margin-bottom: 15px;
      width: 100%;
      max-width: 800px;
    }
    
    .history-item audio {
      width: 100%;
      max-width: 800px;
    }
    #introduce {
      justify-content: center;
      margin-bottom: 25px;
      text-align: center;
    }