/* Base styles for add step buttons - make them always visible for testing */
.add-step-before-first,
.add-step-after-last {
  opacity: 1; /* Make visible for testing */
  visibility: visible;
  transition: all 0.2s ease-in-out;
  margin: 0.5rem 0;
}

/*
TODO: After testing, change to hover-based visibility:
.add-step-before-first,
.add-step-after-last {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  margin: 0.5rem 0;
}

.planning-container:hover .add-step-before-first,
.planning-container:hover .add-step-after-last {
  opacity: 1;
  visibility: visible;
}
*/

/* Button styling */
.add-step-before-first button,
.add-step-after-last button {
  min-height: 60px; /* Same as typical empty step height */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

/* Dark mode adjustments - using actual color values since we don't have Tailwind @apply */
.add-step-before-first button,
.add-step-after-last button {
  border-color: rgb(209 213 219); /* gray-300 */
  color: rgb(107 114 128); /* gray-500 */
  background-color: transparent;
}

.add-step-before-first button:hover,
.add-step-after-last button:hover {
  border-color: rgb(96 165 250); /* blue-400 */
  background-color: rgba(59, 130, 246, 0.05); /* blue-50 equivalent */
  color: rgb(37 99 235); /* blue-600 */
}