/* ====== CREATE MODEL PAGE SPECIFIC STYLES ====== */

.create-model-page {
  padding-bottom: 80px; /* відступ для navbar */
}
#selectPhotosInstruction{
    padding: 0px 15px;

}
.photo-item {
  display: flex;
  align-items: center;
  background-color: black;
  border-radius: 12px;
  padding: 4px 15px;         /* 🔽 менший padding */
  width: 92%;
  /* max-width: 360px; */
  height: 46px;   
  border: 2px;          /* 🔽 ще нижча висота */
}

.photo-item img {
  width: 36px;              /* 🔽 зменшено */
  height: 36px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 8px;
}

.photo-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  color: #f8e5cc;
  font-size: 11px;         /* 🔽 дрібніше */
  overflow: hidden;
}

.photo-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.photo-size {
  font-size: 10px;         /* 🔽 дрібніше */
  opacity: 0.75;
  line-height: 1;
}

.remove-btn {
  background: none;
  color: #f8e5cc;
  font-size: 18px;         /* 🔽 менше */
  border: none;
  cursor: pointer;
  margin-left: 6px;
}



.select-wrapper {
  display: flex;
  justify-content: flex-start;
  padding: 20px;
}


#selectPhotosBtn::before {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  color: var(--text-light);
  font-size: 20px;
  font-weight: 500;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
#selectPhotosBtn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 12px 16px;
  margin-left: 0; /* важливо! */
}

/* === Стилі для радиобаттонов пола === */
.gender-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 16px 0;
}

.gender-label {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-right: 8px;
}

.gender-radio {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.1rem;
  color: var(--text-light);
  cursor: pointer;
}

.gender-radio input[type="radio"] {
  margin-right: 4px;
}

.create-model-page {
  padding-bottom: 120px; /* більше місця для кнопки та navbar */
}