@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('/Roman.ttf');
}

* {
    font-family: 'Neue Haas Grotesk';
    color: #fff;
}

body {
    font-family: 'Neue Haas Grotesk', sans-serif;
    background: #2a2a2a;
    color: #f6f6f6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    box-sizing: border-box;
  }
  
  .container {
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    width: 90%;
    max-width: 600px;
    padding: 2rem;
  }
  
  .header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .download-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  input, select, button {
    width: 100%;
    padding: 12px;
    border-radius: 15px;
    border: 2px solid #ccc;
    background-color: transparent;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }

  input:hover, select:hover, button:hover {
    box-shadow: 0 0 5px rgba(0, 123, 255, 1);
  }
  
  .button-container {
    display: flex;
    gap: 10px;
  }

  .submit {
    border-radius: 30px;
    cursor: pointer;
    border: 2px solid #ccc;
    background-color: #28a745;
    mix-blend-mode: color-dodge;
    color: white;
  }

  .submit:hover {
    border: 2px solid rgba(0, 123, 255, 1);
  }
  
  .toggle-button {
    padding: 10px 20px;
    border: 2px solid #ccc;
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .toggle-button.active {
    background-color: #57A5F3;
  }
  
  input:focus, select:focus {
    outline: none;
    border-color: #007bff;
  }
  
.progress-section {
    margin-top: 2rem;
  }
  
  #progressContainer {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden; 
    padding: 10px;
    border-radius: 5px;
    height: 60px; 
    display: flex;
    align-items: center; 
    background: none; 
  }
  
  #statusList {
    display: flex;
    gap: 10px;
    padding: 0;
    scroll-behavior: smooth;
  }

  #progressContainer::-webkit-scrollbar {
    height: 8px;
}

#progressContainer::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 4px;
}

#progressContainer::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
    transition: all 0.3s ease;
}

#progressContainer::-webkit-scrollbar-thumb:hover {
    background: #555;
}
  
  .status-item {
    background-color: #1a1a1a;
    color: white;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 14px;
    display: inline-flex;
    align-items: center; 
    height: 100%; 
    transition: all 0.4s ease;
    opacity: 0.8;
    min-width: 150px;
    justify-content: center;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
  }
  
  .status-item.active {
    opacity: 1;
    background-color: #28a745;
  }
  
  .status-item.active::before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: white;
    margin-right: 5px;
  }
  

  .blob {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 700px;
    height: 700px;
    border-radius: 100%;
    background-image: linear-gradient(red 10%, crimson);
    filter: blur(250px);
    transition: all 450ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: -10;
}

/* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ 
.navbar {
    background-color: #333;
    color: white;
    width: 100%;
    height: 30px;
    padding: 10px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
}

.navbar-btn {
    background: none;
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.navbar-btn:hover {
    background-color: #555;
}

.navbar-text {
    font-size: 24px;
    font-weight: bold;
}