/* Customize the size of form inputs */
.form-container input.form-control-sm {
    width: 100px; /* Adjust the width as needed */
    height: 30px;
    padding: 5px;
}

/* Optional: Adjust label and spacing */
.form-container label {
    margin-right: 10px;
    font-weight: bold;
}

/* Optional: Add responsive behavior */
@media (max-width: 768px) {
    .form-container input.form-control-sm {
        width: 80px;
    }
}
.list-group-item {
    font-family: monospace;
  }
  
.gear-card {
  border: 2px solid transparent;
  transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  cursor: pointer;
}

.gear-card.selected {
  border-color: #28a745; /* Bootstrap green */
  box-shadow: 0 0 6px rgba(40, 167, 69, 0.6);
  background-color: #e6f9ec;
}
