body {
  font-family: system-ui, sans-serif;
  background: #0f111a;
  color: #fff;
  margin: 0;
  padding-bottom: 70px; 
}

#content {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; 
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
  gap: 20px;
  margin-top: 20px;
  justify-items: center;
  max-width: 800px; 
}

.service-card {
  background: #1a1c29;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  width: 100%;
  max-width: 280px;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.3);
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  pointer-events: none;
  user-select: none;
}

.service-card h3 {
  margin: 8px 0 4px;
  font-size: 16px;
}

.service-card p {
  margin: 0;
  color: #ccc;
  font-size: 14px;
}

/* ====== Нижнее меню ====== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1c29;
  border-top: 1px solid #2b2f40;
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
  height: 70px;
}

.bottom-nav button {
  flex: 1;
  background: none;
  border: none;
  color: #aaa;
  font-size: 14px; /* Увеличили размер текста */
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px; /* Увеличили отступ между иконкой и текстом */
  padding: 8px 4px; /* Добавили внутренние отступы */
}

.bottom-nav button span.icon {
  font-size: 22px; /* Увеличили иконки */
  line-height: 1;
}

.bottom-nav button.active {
  color: #4dc3ff;
  font-weight: 600;
}

.booking-card {
  background: #1a1c29;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid #2b2f40;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.booking-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.3);
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.booking-header h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.price {
  background: #4dc3ff;
  color: #0f111a;
  padding: 6px 10px;       /* немного меньше отступов */
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.booking-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.label {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 4px;
}

.value {
  font-weight: 500;
  color: #fff;
}

.booking-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #2b2f40;
}

.status {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #0f111a;
}

.status.подтверждено { background: #4dc3ff; }
.status.ожидание { background: #ff9500; }
.status.отменено { background: #ff4757; }
.status.completed { background: #4cd964; }
.status.unknown { background: #666; }

.cancel-btn {
  background: #ff4757;
  color: white;
  border: none;
  padding: 10px 20px;      /* больше */
  border-radius: 10px;
  font-size: 14px;         /* крупнее текст */
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cancel-btn:hover {
  background: #ff3742;
  transform: translateY(-1px);
}

.bookings-container {
  max-height: 500px;
  overflow-y: auto;
  width: 100%;
}

/* Стили для анкеты */
.anketa-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.anketa-header {
  text-align: center;
  margin-bottom: 30px;
}

.anketa-header h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #fff;
}

.anketa-status {
  display: inline-block;
  background: #4dc3ff;
  color: #0f111a;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.anketa-section {
  background: #1a1c29;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #2b2f40;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.anketa-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: #4dc3ff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.anketa-section h3::before {
  content: "•";
  color: #4dc3ff;
  font-size: 20px;
}

.form-group {
  margin-bottom: 20px;
  box-sizing: border-box;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #aaa;
  margin-bottom: 8px;
}

.form-group label.required::after {
  content: " *";
  color: #ff4757;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #0f111a;
  border: 2px solid #2b2f40;
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #4dc3ff;
  box-shadow: 0 0 0 3px rgba(77, 195, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  max-width: 100%;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23aaa' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

/* Стили для разделителя */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #2b2f40, transparent);
  margin: 24px 0;
}

/* Стили для информации о пользователе */
.user-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.user-info-item {
  background: #0f111a;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid #2b2f40;
}

.user-info-item .label {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 4px;
}

.user-info-item .value {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

/* Стили для чекбокса/переключателя */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #4dc3ff;
}

.checkbox-group label {
  margin: 0;
  font-size: 14px;
  color: #fff;
}

/* Кнопка отправки */
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #4dc3ff 0%, #2a9ef6 100%);
  color: #0f111a;
  border: none;
  border-radius: 16px;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 16px rgba(77, 195, 255, 0.3);
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(77, 195, 255, 0.4);
}

.submit-btn:active:not(:disabled) {
  transform: translateY(0);
}

.submit-btn:disabled {
  background: #2b2f40;
  color: #666;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Стили для состояния загрузки */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Адаптивность */
@media (max-width: 768px) {
  .anketa-container {
    padding: 16px;
  }
  
  .anketa-section {
    padding: 16px;
    border-radius: 12px;
    margin-left: 0;
    margin-right: 0;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 14px;
    font-size: 15px;
    width: 100%;
  }
}

/* Анимации */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anketa-section {
  animation: fadeIn 0.4s ease-out;
}

.anketa-section:nth-child(2) {
  animation-delay: 0.1s;
}

.anketa-section:nth-child(3) {
  animation-delay: 0.2s;
}

.anketa-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.anketa-status.filled {
  background: #03e903;
  color: #0f111a;
}

.anketa-status.not-filled {
  background: #ff9500;
  color: #0f111a;
}

.anketa-status.error {
  background: #ff4757;
  color: #fff;
}

/* Стили для профиля */
.profile-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.profile-header {
  text-align: center;
  margin-bottom: 20px;
}

.profile-header h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #fff;
}

.profile-subtitle {
  font-size: 14px;
  color: #aaa;
  margin: 0;
}

.profile-section {
  background: #1a1c29;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid #2b2f40;
  transition: all 0.3s ease;
}

.user-main-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #2b2f40;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-details {
  flex: 1;
}

.user-name {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #fff;
}

.user-id {
  font-size: 14px;
  color: #aaa;
  margin: 0 0 4px 0;
}

.user-role {
  font-size: 12px;
  color: #4dc3ff;
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
}

.info-grid {
  display: grid;
  gap: 16px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
}

.info-label {
  font-size: 14px;
  color: #aaa;
  font-weight: 500;
  flex-shrink: 0;
  margin-right: 16px;
}

.info-value {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  text-align: right;
  max-width: 60%;
  word-break: break-word;
  flex: 1;
}

.info-status {
  font-size: 14px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.info-status.filled {
  background: #4dc3ff;
  color: #0f111a;
}

.info-status.not-filled {
  background: #ff9500;
  color: #0f111a;
}

.info-status.error {
  background: #ff4757;
  color: #fff;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #2b2f40, transparent);
  margin: 20px 0;
}

/* Адаптивность */
@media (max-width: 768px) {
  .profile-container {
    padding: 20px;
  }
  
  .profile-section {
    padding: 16px;
    border-radius: 12px;
  }
  
  .user-main-info {
    gap: 12px;
  }
  
  .user-avatar {
    width: 50px;
    height: 50px;
  }
  
  .user-name {
    font-size: 16px;
  }
  
  .info-item {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  
  .info-value {
    text-align: left;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .profile-container {
    padding: 20px;
  }
  
  .profile-section {
    padding: 12px;
    border-radius: 10px;
  }
}
.profile-section {
  margin-left: 20px;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .profile-section {
    margin-left: 16px;
    margin-right: 16px;
  }
}

@media (max-width: 480px) {
  .profile-section {
    margin-left: 12px;
    margin-right: 12px;
  }
}

.categories-container {
  max-width: 800px;
  margin: 0 auto;
}

.category-accordion {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.category-accordion:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.category-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transition: background 0.3s ease;
}

.category-header:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.category-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.category-icon {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.category-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.category-accordion.active .category-content {
  max-height: none; /* Убираем фиксированную высоту */
  height: auto; /* Позволяем контенту занимать столько места, сколько нужно */
}

.services-loading, .no-services, .services-error {
  padding: 30px 20px;
  text-align: center;
  color: #666;
}

.services-list {
  padding: 0;
}

.service-item {
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  transition: background 0.2s ease;
  gap: 15px;
}

.service-item:hover {
  background: #f8f9fa;
}

.service-item:last-child {
  border-bottom: none;
}

.service-main-info {
  flex: 1;
}

.service-text {
  margin-bottom: 8px;
}

.service-name {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}


.service-description {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.service-meta {
  display: flex;
  gap: 15px;
  align-items: center;
}

.service-price {
  font-weight: 700;
  color: #2c5aa0;
  font-size: 24px;
  text-align: center;
  white-space: nowrap;
}
.price-book-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}


.service-duration {
  font-size: 14px;
  color: #888;
  background: #f0f0f0;
  padding: 4px 8px;
  border-radius: 12px;
}

.service-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px; /* Отступ между ценой и кнопкой */
  min-width: 120px; /* Минимальная ширина чтобы не сжималось */
}

.service-price-inline {
  font-weight: 700;
  color: #2c5aa0;
  font-size: 16px;
  white-space: nowrap;
}

.service-info-btn {
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.service-info-btn, .service-book-btn {
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.service-info-btn {
  background: #6c757d;
  color: white;
}

.service-info-btn:hover {
  background: #5a6268;
}

.service-book-btn {
  background: #28a745;
  color: white;
}

.service-book-btn:hover {
  background: #218838;
  transform: translateY(-1px);
}

/* Стили для модального окна с деталями услуги */
.service-details-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.service-details-content {
  background: white;
  padding: 30px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-details-info {
  margin: 20px 0;
}

.service-details-info p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.service-details-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.details-close-btn, .details-book-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.details-close-btn {
  background: #6c757d;
  color: white;
}

.details-close-btn:hover {
  background: #5a6268;
}

.details-book-btn {
  background: #28a745;
  color: white;
}

.details-book-btn:hover {
  background: #218838;
}

/* Стили для модального окна записи */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
  box-sizing: border-box;
}

.modal-content {
  background: #1a1c29;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid #2b2f40;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #2b2f40;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.close-button {
  background: none;
  border: none;
  color: #aaa;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.close-button:hover {
  background: #2b2f40;
  color: #fff;
}

.modal-body {
  padding: 20px;
}

/* Индикатор прогресса */
.booking-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.booking-progress::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #2b2f40;
  z-index: 1;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2b2f40;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.progress-step.active .step-number {
  background: #4dc3ff;
  color: #0f111a;
}

.progress-step span {
  font-size: 12px;
  color: #aaa;
  text-align: center;
}

.progress-step.active span {
  color: #4dc3ff;
}

/* Шаги записи */
.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
}

.step-content {
  animation: fadeIn 0.3s ease;
}

.step-content h4 {
  margin: 0 0 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

/* Состояния проверки анкеты */
.checking-state, .success-state, .error-state {
  text-align: center;
  padding: 30px 20px;
}

.checking-state p, .success-state p, .error-state p {
  margin: 0 0 20px 0;
  color: #aaa;
}

.success-icon, .error-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.error-content {
  color: #fff;
}

/* Кнопки */
.primary-btn {
  background: #4dc3ff;
  color: #0f111a;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.primary-btn:hover:not(:disabled) {
  background: #3ab0e6;
}

.primary-btn:disabled {
  background: #2b2f40;
  color: #666;
  cursor: not-allowed;
}

.secondary-btn {
  background: transparent;
  color: #aaa;
  border: 1px solid #2b2f40;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.secondary-btn:hover {
  background: #2b2f40;
  color: #fff;
}

/* Выбор даты и времени */
.date-selection, .time-selection {
  margin-bottom: 20px;
}

.date-selection label, .time-selection label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #aaa;
  font-weight: 500;
}

.date-select {
  width: 100%;
  background: #0f111a;
  border: 2px solid #2b2f40;
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.date-select:focus {
  outline: none;
  border-color: #4dc3ff;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.time-slot-btn {
  background: #0f111a;
  border: 2px solid #2b2f40;
  border-radius: 8px;
  padding: 12px 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.time-slot-btn:hover {
  border-color: #4dc3ff;
}

.time-slot-btn.selected {
  background: #4dc3ff;
  border-color: #4dc3ff;
  color: #0f111a;
}

/* Информация о выбранном слоте */
.selected-slot-info {
  background: #0f111a;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid #2b2f40;
}

.slot-summary p {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: #fff;
}

.slot-summary p:last-child {
  margin-bottom: 0;
}

.slot-summary strong {
  color: #4dc3ff;
}

/* Комментарий */
.comment-section {
  margin-bottom: 20px;
}

.comment-section label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #aaa;
  font-weight: 500;
}

.comment-textarea {
  width: 100%;
  background: #0f111a;
  border: 2px solid #2b2f40;
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  min-height: 80px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.comment-textarea:focus {
  outline: none;
  border-color: #4dc3ff;
}

.comment-textarea::placeholder {
  color: #666;
}

/* Действия шагов */
.step-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.step-actions button {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.next-step-btn, .prev-step-btn {
  background: transparent;
  color: #aaa;
  border: 1px solid #2b2f40;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.next-step-btn:not(:disabled) {
  background: #28a745; /* Зеленый фон */
  color: #fff; /* Белый текст */
  border-color: #28a745; /* Зеленая граница */
}

.next-step-btn:disabled {
  background: transparent;
  color: #aaa;
  border-color: #2b2f40;
  cursor: not-allowed;
}
.prev-step-btn:hover {
  background: #2b2f40;
  color: #fff;
}

/* Анимация */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Адаптивность */
@media (max-width: 768px) {
  .modal-overlay {
    padding: 10px;
  }
  
  .modal-content {
    max-height: 95vh;
  }
  
  .modal-header {
    padding: 16px;
  }
  
  .modal-body {
    padding: 16px;
  }
  
  .time-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .step-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .time-slots-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-progress {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .booking-progress::before {
    display: none;
  }
}