/* Extract Sequence Specific Styles */

/* Coordinate warning */
#coordinate-warning {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 1px solid #faebcc;
  border-radius: 8px;
  padding: 1rem;
  margin: 1.5rem 0;
  border-left: 4px solid #f0ad4e;
}

#coordinate-warning strong {
  color: #8a6d3b;
  display: inline-block;
  margin-right: 0.5rem;
}

/* Horizontal coordinates row */
.coordinates-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.coordinate-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 120px;
}

.coordinate-field label {
  font-weight: 500;
  color: #495057;
  font-size: 0.95rem;
}

.coordinate-field input[type="number"] {
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.coordinate-field input[type="number"]:focus {
  outline: none;
  border-color: #4285f4;
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

/* Strand options styling */
.strand-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.strand-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.strand-option input[type="radio"] {
  margin: 0;
  transform: scale(1.2);
}

.strand-option label {
  font-weight: 400;
  color: #495057;
  cursor: pointer;
  margin: 0;
}

/* Result output specific to extract sequence */
#result-output {
  height: 300px;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .coordinates-row {
    flex-direction: column;
    gap: 1rem;
  }

  .coordinate-field {
    min-width: 100%;
  }

  .strand-options {
    flex-direction: column;
    gap: 0.5rem;
  }
}