/* General styles for dark mode */
body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background-color: #121212;
  color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto; /* Center container */
}

h1 {
  color: #ffcc00;
}

/* Toolbar styles */
.toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  align-items: center;
}

#group-select-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Styling for items */
.item {
  border: 1px solid #444;
  background-color: #1e1e1e;
  padding: 10px;
  margin-bottom: 10px;
}

.models {
  margin-left: 20px;
}

.models > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
  .collapsible-header {
      cursor: pointer;
      padding: 5px;
      background-color: #333;
      margin-bottom: 5px;
  }

/* Styling for buttons */
button {
  background-color: #333;
  color: #ffcc00;
  border: 1px solid #555;
  padding: 8px 15px; /* Slightly larger */
  cursor: pointer;
  transition: background-color 0.3s ease; /* Smooth hover effect */
  font-size: 14px;
}

button:hover {
  background-color: #555;
}

/* Highlight duplicates in red */
.duplicate {
  color: #ff4444;
  font-weight: bold;
}

/* Dropdown and input styling */
select, input[type="file"] {
  background-color: #1e1e1e;
  color: #ffffff;
  border: 1px solid #444;
  padding: 8px;
  margin: 5px 0;
}

select:hover, input[type="file"]:hover {
  border-color: #ffcc00;
}