/* left-panel-controls.css */
/* Styling for animation controls in the left panel */

/* Container for controls in left panel */
.left-panel-controls {
  margin-bottom: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  width: 100% !important;
}

/* Make buttons fill the width */
.left-panel-controls button {
  width: 100% !important;
  margin-bottom: 8px !important;
  padding: 8px 12px !important;
  text-align: center !important;
}

/* Style the select dropdown */
.left-panel-controls .select-wrapper {
  width: 100% !important;
  margin-top: 5px !important;
}

.left-panel-controls select {
  width: 100% !important;
  padding: 8px !important;
  border-radius: 4px !important;
  border: 1px solid #ccc !important;
  background-color: #fff !important;
  font-size: 14px !important;
}

/* Add focus styles */
.left-panel-controls button:focus,
.left-panel-controls select:focus {
  outline: 2px solid #0078d7 !important;
  outline-offset: 2px !important;
}

/* Animation option styles */
.options-group {
  margin-bottom: 20px !important;
  padding-bottom: 5px !important;
  border-bottom: 1px solid #eee !important;
}

.options-group h3 {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  font-size: 16px !important;
  color: #333 !important;
  font-weight: 600 !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .left-panel-controls {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 5px !important;
  }
  
  .left-panel-controls button {
    width: calc(50% - 5px) !important;
    margin-bottom: 5px !important;
  }
  
  .left-panel-controls .select-wrapper {
    width: 100% !important;
  }
}
