/* templates/css/breed-selector.css */
/* Page-only styles for breed-selector.php */

.page-selector{
  background: #faf7f2;
}

/* Match your site container feel, but keep it a bit narrower */
.selector-wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 20px 44px;
}

.selector-hero{
  margin: 0 0 16px;
}

.selector-hero h1{
  margin: 0 0 8px;
}

.selector-muted{
  margin: 0 0 10px;
  color: rgba(0,0,0,0.62);
  line-height: 1.5;
}

/* Cards */
.selector-card{
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  margin-bottom: 16px;
}

.selector-card h2{
  margin: 0 0 12px;
  font-size: 1.1rem;
}

/* Form grid */
.selector-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 880px){
  .selector-grid{
    grid-template-columns: 1fr 1fr;
  }
}

/* Labels + selects */
.page-selector label{
  display: block;
  font-weight: 700;
  margin: 0 0 6px;
}

.page-selector select{
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,0.16);
  border-radius: 12px;
  background: #fff;
}

/* Checkbox row */
.selector-check{
  display: flex;
  gap: 10px;
  align-items: center;
}

.selector-check input{
  transform: scale(1.1);
}

.selector-check-label{
  margin: 0;
  font-weight: 700;
}

/* Hints + actions */
.selector-hint{
  display: block;
  font-size: 0.92rem;
  color: rgba(0,0,0,0.58);
  margin-top: 6px;
  line-height: 1.4;
}

.selector-actions{
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Ensure the submit <button> uses your .btn styling cleanly */
.page-selector button.btn{
  border: 0;
  cursor: pointer;
}