.company-level-selector-title {
  font-size: 12px;
  color: var(--db-text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.company-level-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 8px;
}

.company-level-option {
  position: relative;
  min-width: 0;
}

.company-level-btn {
  width: 100%;
  min-height: 44px;
  padding: 10px 34px 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--db-border);
  border-radius: 10px;
  color: var(--db-text-muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: Inter, sans-serif;
}

.company-level-btn:hover {
  background: var(--db-border-light);
  color: var(--db-text-strong);
}

.company-level-btn.active {
  background: var(--db-text-strong);
  color: #ffffff;
}

.company-level-name {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.2;
}

.company-level-desc {
  display: none;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .company-level-desc {
    display: block;
  }
}

@media (max-width: 640px) {
  .company-level-btn {
    min-height: 42px;
    padding: 10px 30px 10px 8px;
    font-size: 11px;
  }

  .company-level-name {
    font-size: 11px;
  }

  .company-level-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-level-option:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}
