/* =============================================
   PROGRESSION FINDER — Additional Styles
   (Shared card/input styles come from key-finder.css)
   ============================================= */

/* ---- Degree input builder ---- */
.pf-degree-builder {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #10121a;
  border: 1.5px solid #2a2d3a;
  border-radius: 10px;
}

.pf-degree-context {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.pf-degree-context label {
  font-size: 0.75rem;
  color: #888;
  font-weight: 600;
}
.pf-degree-context select {
  padding: 6px 10px;
  border-radius: 10px;
  border: 1.5px solid #2a2d3a;
  background: #13151f;
  color: #ddd;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s;
}
.pf-degree-context select:focus {
  border-color: #3a6ea5;
}

/* ---- Degree buttons: use shared .kf-diatonic-btn from key-finder.css ---- */
.pf-degree-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
  .pf-degree-btn {
    min-width: 48px;
    padding: 6px 10px;
  }
  .pf-deg-roman { font-size: 0.78rem; }
  .pf-deg-chord { font-size: 0.6rem; }
}
