.font-selector {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  margin: 24px 0;
  background: #f9f9f9;
  font-family: inherit;
}

.font-selector-title {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.5;
}

.font-options {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
}

.font-option {
  flex: 1 1 150px;
  display: flex;
  align-items: center;
  padding: 6px 10px; /* menší padding */
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  min-height: 50px; /* nižší box */
}

.font-label {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 1px solid #ccc;
  margin-right: 8px;
  font-size: 12px;
  flex-shrink: 0;
}

.font-image {
  max-height: 35px; /* menší obrázek */
  width: auto;
  display: block;
}

.font-extra-info {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.font-extra-info a {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .font-option {
    flex: 1 1 100%;
  }
}