/* Contact Info Component */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  color: #6c757d;
  flex-shrink: 0;
  vertical-align: middle;
}

.contact-name {
  font-weight: 500;
  color: #495057;
  display: flex;
  align-items: center;
}

.contact-phone,
.contact-email {
  font-size: 13px;
  color: #6c757d;
  display: flex;
  align-items: center;
}

.contact-section-header {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
}

/* Checkbox Section (for grouped checkboxes with nested items) */
.checkbox-section {
  margin-bottom: 15px;
}

.checkbox-section .form-check {
  font-weight: bold;
  margin-bottom: 5px;
}

.nested-list {
  margin-left: 20px;
}

/* Empty States */
.empty-state {
  text-align: center;
  padding: 40px;
  color: #6c757d;
}

.empty-message {
  color: #999;
  text-align: center;
  padding: 2rem;
}

.text-placeholder {
  color: #999;
}

/* Section Spacing */
.section-spacing {
  margin-top: 2rem;
}