body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  #video-container {
    text-align: center;
    filter: blur(1);
    background-color: #2196f3;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 400px;
  }
  
  #header {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .thumbnail-container {
    position: relative;
  }
  
  .thumbnail {
    margin-bottom: 20px;
    display: none;
    border-radius: 8px;
  }
  .loading-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .loading {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .error-message {
    display: none;
    color: #ff4444;
    background-color: #ffeeee;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
  }
  .title {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  
  .format {
    display: none;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .download-btn {
    display: none;
    padding: 10px;
    background-color: #2df321;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
  }
  
  .input-container {
    margin-bottom: 20px;
  }
  
  input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 200px;
    margin-right: 10px;
  }
  
  .convert-btn {
    margin-top: 10px;
    padding: 10px;
    background-color: #f32196;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Style for the custom dropdown */
  .custom-dropdown {
    position: relative;
    display: inline-block;
  }
  
  .selected-option {
    padding: 6.5px;
    background-color: #34dbcb; /* Default background color */
    color: #fff; /* Default text color */
    border-radius: 5px;
    cursor: pointer;
    height: fit-content;
  }
  
  .dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background-color: rgba(33, 125, 187, 0.7);
    border-radius: 5px;
  }
  
  .option {
    padding: 6.8px;
    color: #fff; /* Text color for options */
    cursor: pointer;
  }
  
  .option:hover,
  .option:active {
    background-color: #30bb21;
    border-radius: 5px;
  }
  #made-with-love {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #fff;
    margin-top: 40px; /* Adjust the margin as needed */
  }
  #buy-me-coffee {
    text-align: center;
    margin-top: 10px; /* Adjust the margin as needed */
  }
  #buy-me-coffee img {
    width: 100px;
    height: auto;
  }