.recipe-modal-large {
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
}

.recipe-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.recipe-section:last-child {
  border-bottom: none;
}

.recipe-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.recipe-subsection {
  margin-bottom: 1.5rem;
}

.recipe-subsection h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.75rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: border-color 0.15s ease-in-out;
}

.form-control:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.form-check-input {
  margin-top: 0.25rem;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

.form-check-label {
  font-size: 0.875rem;
  color: #4b5563;
  cursor: pointer;
  user-select: none;
}

.selection-list {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  padding: 1rem;
  max-height: 200px;
  overflow-y: auto;
}

.selection-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.selection-item:last-child {
  border-bottom: none;
}

.text-muted {
  color: #9ca3af;
  font-size: 0.875rem;
  font-style: italic;
}

.btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background-color: #3b82f6;
  color: white;
}

.btn-primary:hover:not(:disabled) {
  background-color: #2563eb;
}

.btn-secondary {
  background-color: #6b7280;
  color: white;
}

.btn-secondary:hover:not(:disabled) {
  background-color: #4b5563;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.drop-zone {
  border: 2px dashed #d1d5db;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  background-color: #f9fafb;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.drop-zone:hover {
  border-color: #3b82f6;
  background-color: #eff6ff;
}

.drop-zone.drag-over {
  border-color: #3b82f6;
  background-color: #dbeafe;
}

.drop-zone-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.drop-zone-text {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.drop-zone-hint {
  font-size: 0.875rem;
  color: #9ca3af;
}

.file-info {
  background-color: #f3f4f6;
  border-radius: 0.375rem;
  padding: 1rem;
  margin-top: 1rem;
}

.file-info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.file-info-row:last-child {
  border-bottom: none;
}

.file-info-label {
  font-weight: 500;
  color: #6b7280;
}

.file-info-value {
  color: #1f2937;
}

.validation-result {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.375rem;
}

.validation-result.success {
  background-color: #d1fae5;
  border: 1px solid #10b981;
  color: #065f46;
}

.validation-result.error {
  background-color: #fee2e2;
  border: 1px solid #ef4444;
  color: #991b1b;
}

.validation-result.warning {
  background-color: #fef3c7;
  border: 1px solid #f59e0b;
  color: #92400e;
}

.validation-list {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

.validation-list li {
  margin-bottom: 0.25rem;
}
