/* Body and Global Styles */
body {
    font-family: 'Arial', sans-serif;
    background: #111; /* Dark background */
    color: #e6e6e6; /* Light text for contrast */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: linear-gradient(to bottom, #1a1a1a, #111);
  }
  
  /* Main container to center the content */
  .container {
    max-width: 800px;
    width: 100%;
    background: #1f1f1f;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  /* Heading and Title */
  h1, h2 {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
  }
  
  h1 {
    font-size: 2.5rem;
    font-weight: 700;
  }
  
  h2 {
    font-size: 1.75rem;
    font-weight: 600;
  }
  
  /* Tab button styles */
  .tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 20px;
  }
  
  .tab-button {
    background-color: #333;
    color: #fff;
    padding: 12px 25px;
    border: 2px solid #444;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s ease-in-out;
  }
  
  .tab-button:hover {
    background-color: #444;
    transform: translateY(-3px);
  }
  
  .tab-button:active {
    transform: translateY(1px);
  }
  
  /* Active tab content */
  .tab-content {
    display: none;
    transition: opacity 0.3s ease-in-out;
  }
  
  .tab-content.active {
    display: block;
    opacity: 1;
  }
  
  /* Form styling (Upload Form) */
  form {
    background: #2c2c2c;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  }
  
  form input, form button {
    background-color: #333;
    color: #e6e6e6;
    border: none;
    padding: 12px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
  }
  
  form input[type="file"] {
    padding: 10px;
  }
  
  form input:focus, form button:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 153, 255, 0.8);
  }
  
  /* Config List and Item styling */
  #configList .config-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #292929;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background 0.3s ease;
  }
  
  #configList .config-item:hover {
    transform: translateY(-5px);
    background: #333;
  }
  
  .config-item span {
    font-size: 1rem;
  }
  
  .config-item a {
    color: #00aaff;
    text-decoration: none;
    font-weight: 600;
  }
  
  .config-item a:hover {
    text-decoration: underline;
  }
  
  .vote-buttons {
    display: flex;
    gap: 10px;
  }
  
  .vote-buttons button {
    background: #444;
    border: 1px solid #555;
    padding: 8px 16px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .vote-buttons button:hover {
    background: #555;
  }
  
  button, .vote-buttons button {
    transition: all 0.3s ease-in-out;
  }
  
  button:active, .vote-buttons button:active {
    transform: translateY(2px);
  }
  
 
  #sortingOptions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  #sortingOptions button {
    background: #444;
    color: #e6e6e6;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  #sortingOptions button:hover {
    background: #555;
  }
  
  .config-item .download-count {
    margin-left: 20px;
    color: #b0b0b0;
    font-size: 0.9rem;
  }
  