/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
  }
  
  header {
    text-align: center;
    margin-bottom: 20px;
  }
  
  #searchInput {
    width: 80%;
    max-width: 400px;
    padding: 10px;
    font-size: 16px;
    margin-top: 10px;
  }
  
  /* Filter Section */
  .filter-section {
    margin: 10px 0;
  }
  
  .filter-button {
    padding: 6px 10px;
    margin: 0 5px;
    border: 1px solid #ccc;
    background-color: #eee;
    cursor: pointer;
    border-radius: 4px;
  }
  
  .filter-button.active {
    background-color: #4caf50;
    color: white;
    border-color: #4caf50;
  }
  
  /* Unit Type Filter Buttons (use purple when active) */
  .filter-button.unit-type-filter.active {
    background-color: #6f42c1;
    border-color: #6f42c1;
  }
  
  /* Faction Filter Icon Buttons */
  .filter-button.faction-filter {
    border: 2px solid transparent;
    padding: 2px;
    background-color: transparent;
    cursor: pointer;
    margin: 0 5px;
  }
  
  /* Faction-specific active styles for faction filter icons */
  .filter-button.faction-filter.faction-usa.active {
    border: 2px solid #007bff;
    border-radius: 50%;
  }
  
  .filter-button.faction-filter.faction-gla.active {
    border: 2px solid #28a745;
    border-radius: 50%;
  }
  
  .filter-button.faction-filter.faction-china.active {
    border: 2px solid #e81809;
    border-radius: 50%;
  }
  
  .filter-icon {
    width: 40px;
    height: 40px;
    display: block;
  }
  
  /* Unit Display */
  .unit {
    background: #fff;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .unit h2 {
    margin-top: 0;
  }
  
  .classification-info {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
  }
  
  /* Action Rows */
  .actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .action-cell {
    flex: 1;
    text-align: center;
  }
  
  /* Base Action Button Styling */
  .action-button {
    padding: 8px 12px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
}
  
  /* Faction-based Action Button Colours */
  /* USA units get blue buttons */
  .unit-usa .action-button {
    background-color: #007bff;
  }
  
  /* GLA units get green buttons */
  .unit-gla .action-button {
    background-color: #28a745;
  }
  
  /* China units get red buttons */
  .unit-china .action-button {
    background-color: #e81809;
  }
  
  .action-button:hover {
    opacity: 0.9;
  }

footer {
    background-color: #f0f0f0;
    padding: 15px;
    text-align: center;
    font-size: 0.9em;
    color: #333;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}
footer a {
    color: #007bff;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

.mode-toggle-container {
    margin: 10px 0;
    text-align: center;
}
.mode-toggle {
    padding: 6px 12px;
    margin: 0 5px;
    border: 1px solid #ccc;
    background-color: #eee;
    cursor: pointer;
    border-radius: 4px;
}
.mode-toggle.active {
    background-color: #4caf50;
    color: white;
    border-color: #4caf50;
}
.quotes-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
