@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap");header {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  justify-content: space-between;
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  position: relative;
}

._headerLink_1sucp_11 {
  display: flex;
  align-items: center;
  column-gap: 16px;
  text-decoration: none;
  color: black;
}

._logo_1sucp_19 {
  height: 50px;
  width: 50px;
}

header h1 {
  margin: 0;
  font-size: 24px;
  flex: 1;
}

._burger_1sucp_30 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

._burger_1sucp_30 span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

._burgerOpen_1sucp_52 span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

._burgerOpen_1sucp_52 span:nth-child(2) {
  opacity: 0;
}

._burgerOpen_1sucp_52 span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

._nav_1sucp_64 {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #f8f9fa;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  padding-top: 80px;
}

._navOpen_1sucp_77 {
  right: 0;
}

._nav_1sucp_64 ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0 20px;
  align-items: stretch;
  gap: 0;
}

._nav_1sucp_64 ul li {
  border-bottom: 1px solid #dee2e6;
}

._nav_1sucp_64 a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  padding: 15px 0;
}

._nav_1sucp_64 a:hover {
  color: #007bff;
}

._nav_1sucp_64 a._active_1sucp_107 {
  color: #007bff;
  font-weight: bold;
}

._logoutButton_1sucp_112 {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  padding: 15px 0;
}

._logoutButton_1sucp_112:hover {
  color: #dc3545;
}

._overlay_1sucp_128 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
._container_1fxlr_1 {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

._error_1fxlr_10 {
  color: red;
  margin-bottom: 20px;
}

._addExerciseForm_1fxlr_15 {
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid #aaa;
  border-radius: 5px;
}

._inputArea_1fxlr_22 {
  margin-bottom: 10px;
}

._input_1fxlr_22,
._textarea_1fxlr_27 {
  width: 100%;
  padding: 8px;
  box-sizing: border-box; /* Важно для корректного отображения ширины */
  margin-bottom: 10px;
  border: 1px solid black;
  outline: none;
}

._textarea_1fxlr_27 {
  height: 80px;
  resize: vertical;
}

._addButton_1fxlr_41 {
  padding: 10px 20px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

._addButton_1fxlr_41:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

._addButton_1fxlr_41:hover:not(:disabled) {
  opacity: 0.9;
}

._exerciseCard_1fxlr_59 {
  border: 1px solid #aaa;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 5px;
}

._exerciseCardHeader_1fxlr_66 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

._exerciseImage_1fxlr_73 {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

._exerciseInfo_1fxlr_81 {
  flex: 1;
}

._bodyHighlighters_1fxlr_85 {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

._bodyHighlighters_1fxlr_85 svg {
  width: 80px;
  height: auto;
}

._exerciseName_1fxlr_96 {
  margin: 0 0 10px 0;
}

._exerciseDescription_1fxlr_100 {
  margin: 0 0 10px 0;
  color: #666;
}

._createdAt_1fxlr_105 {
  color: #999;
  font-size: 0.875rem;
}

._deleteButton_1fxlr_110 {
  background: #dc3545;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
  margin-left: 10px;
}

._deleteButton_1fxlr_110:hover {
  opacity: 0.9;
}

._loading_1fxlr_124,
._empty_1fxlr_125 {
  text-align: center;
  padding: 20px;
  color: #666;
}

._checkboxGroup_1fxlr_131 {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

._checkboxGroup_1fxlr_131 label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

._exerciseFlags_1fxlr_144 {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

._flag_1fxlr_150 {
  background: #e0e0e0;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.75rem;
  color: #333;
}

._exerciseMuscles_1fxlr_158 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

._muscle_1fxlr_165 {
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  color: white;
}

._muscleHigh_1fxlr_172 {
  background: #1976d2;
}

._muscleLow_1fxlr_176 {
  background: #64b5f6;
}

._formButtons_1fxlr_180 {
  display: flex;
  gap: 10px;
}

._cancelButton_1fxlr_185 {
  padding: 10px 20px;
  background: #6c757d;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

._cancelButton_1fxlr_185:hover {
  opacity: 0.9;
}

._exerciseActions_1fxlr_198 {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

._editButton_1fxlr_204 {
  background: #28a745;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
}

._editButton_1fxlr_204:hover {
  opacity: 0.9;
}

._sectionHeader_1fxlr_217 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

._sectionHeader_1fxlr_217 h3 {
  margin: 0;
}

._linkButton_1fxlr_228 {
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
}

._linkButton_1fxlr_228:hover {
  text-decoration: underline;
}

._sessionsList_1fxlr_241 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

._sessionCard_1fxlr_247 {
  background: #f9f9f9;
  border: 1px solid #aaa;
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

._sessionCard_1fxlr_247:hover {
  border-color: #007bff;
  background: #f0f7ff;
}

._sessionHeader_1fxlr_261 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

._workoutName_1fxlr_268 {
  font-weight: 600;
  font-size: 14px;
}

._status_1fxlr_273 {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
}

._status_1fxlr_273._in_progress_1fxlr_279 {
  background-color: #f3e8ff;
  border: 1px solid #7c3aed;
  color: #7c3aed;
}

._status_1fxlr_273._completed_1fxlr_285 {
  background-color: #dcfce7;
  border: 1px solid #16a34a;
  color: #16a34a;
}

._status_1fxlr_273._planned_1fxlr_291 {
  background-color: #dbeafe;
  border: 1px solid #1d4ed8;
  color: #1d4ed8;
}

._sessionMeta_1fxlr_297 {
  font-size: 12px;
  color: #666;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

._activityWrapper_1fxlr_305 {
  width: 100%;
  overflow-x: auto;
  direction: rtl;
}

._activityGrid_1fxlr_311 {
  display: flex;
  direction: ltr;
  column-gap: 8px;
  width: max-content;
}

._activityMonth_1fxlr_318 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

._activityMonthLabel_1fxlr_325 {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

._activityMonthWeeks_1fxlr_335 {
  display: flex;
  gap: 2px;
  justify-content: center;
}

._activityColumn_1fxlr_341 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

._activityCell_1fxlr_347 {
  --cell-color: #000;
  width: 14px;
  height: 14px;
  background-color: #ebedf0;
  border-radius: 2px;
}

._activityCellEmpty_1fxlr_355 {
  width: 14px;
  height: 14px;
}

._activityCell_1fxlr_347._activityCompleted_1fxlr_360,
._activityCell_1fxlr_347._activitySkipped_1fxlr_361 {
  background-color: var(--cell-color);
}

._activityCell_1fxlr_347._activityInProgress_1fxlr_365 {
  --cell-color: #7c3aed;
  background-color: var(--cell-color);
}

._activityCell_1fxlr_347._activityPlanned_1fxlr_370 {
  --cell-color: #1d4ed8;
  background-color: var(--cell-color);
}

._activityCell_1fxlr_347._activityFuture_1fxlr_375 {
  background-color: transparent;
  border: 1px solid #d1d5db;
}

._activityCell_1fxlr_347._activityToday_1fxlr_380 {
  animation: _pulseOutline_1fxlr_1 2s infinite;
}

@keyframes _pulseOutline_1fxlr_1 {
  0%,
  100% {
    box-shadow: 0 0 0 1px var(--cell-color);
  }
  50% {
    box-shadow: 0 0 0 0 var(--cell-color);
  }
}

@media (min-width: 900px) {
  ._activityWrapper_1fxlr_305 {
    overflow-x: visible;
    direction: ltr;
  }

  ._activityGrid_1fxlr_311 {
    width: 100%;
    justify-content: space-between;
  }

  ._activityCell_1fxlr_347,
  ._activityCellEmpty_1fxlr_355 {
    width: 10px;
    height: 10px;
  }

  ._activityMonthLabel_1fxlr_325 {
    font-size: 11px;
    margin-bottom: 2px;
  }
}
._container_zn0sj_1 {
  position: relative;
  flex: 1;
}

._inputWrapper_zn0sj_6 {
  display: flex;
  align-items: center;
  border: 1px solid #aaa;
  border-radius: 3px;
  background: white;
  cursor: pointer;
  
  ._searchInput_zn0sj_14 {
    flex: 1;
    border: none;
    outline: none;
    font-size: inherit;
    padding: 8px;
    min-width: 0;
  }
}


._selectedValue_zn0sj_25,
._placeholder_zn0sj_26 {
  padding: 8px;
}

._selectedValue_zn0sj_25 {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._placeholder_zn0sj_26 {
  flex: 1;
  color: #888;
}

._clearButton_zn0sj_42 {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #888;
  padding: 8px 4px;
  line-height: 1;
}

._clearButton_zn0sj_42:hover {
  color: #333;
}

._arrow_zn0sj_56 {
  font-size: 10px;
  color: #666;
  padding: 8px 8px 8px 0;
}

._dropdown_zn0sj_62 {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 200px;
  overflow-y: auto;
  background: white;
  border: 1px solid #aaa;
  border-top: none;
  border-radius: 0 0 3px 3px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 100;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

._option_zn0sj_80 {
  padding: 8px 12px;
  cursor: pointer;
}

._option_zn0sj_80:hover {
  background: #f0f0f0;
}

._option_zn0sj_80._selected_zn0sj_25 {
  background: #e3f2fd;
}

._noResults_zn0sj_93 {
  padding: 8px 12px;
  color: #888;
  font-style: italic;
}
._container_fpjwh_1 {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

._header_fpjwh_8 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}


._error_fpjwh_16 {
  color: red;
  margin-bottom: 20px;
}

._loading_fpjwh_21,
._empty_fpjwh_22 {
  text-align: center;
  padding: 20px;
  color: #666;
}

._workoutsList_fpjwh_28 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

._workoutCard_fpjwh_34 {
  border: 1px solid #aaa;
  padding: 15px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

._favoriteButton_fpjwh_44 {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  transition: transform 0.15s, background-color 0.15s, border-color 0.15s;
  flex-shrink: 0;
}

._favoriteButton_fpjwh_44:hover {
  transform: scale(1.1);
  background-color: #fff;
  border-color: #ccc;
}

._workoutInfo_fpjwh_66 {
  flex: 1;
}

._workoutHeader_fpjwh_70 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

._workoutName_fpjwh_77 {
  margin: 0;
}

._ownerBadge_fpjwh_81 {
  padding: 3px 8px;
  background-color: #28a745;
  color: white;
  font-size: 0.75rem;
  border-radius: 3px;
  font-weight: normal;
}

._workoutDescription_fpjwh_90 {
  margin: 0 0 10px 0;
  color: #666;
}

._workoutActions_fpjwh_95 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: 15px;
}


._detailsButton_fpjwh_103 {
  padding: 5px 10px;
  background-color: #6c757d;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.875rem;
}

._detailsButton_fpjwh_103:hover {
  opacity: 0.9;
}

._modal_fpjwh_117 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

._modalContent_fpjwh_130 {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

._exercisesList_fpjwh_140 {
  list-style: none;
  padding: 0;
}

._exercisesList_fpjwh_140 li {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

._exercisesList_fpjwh_140 li:last-child {
  border-bottom: none;
}

._exerciseDescription_fpjwh_154 {
  margin: 5px 0 0;
  font-size: 0.875rem;
  color: #666;
}

._closeButton_fpjwh_160 {
  margin-top: 15px;
  padding: 8px 16px;
  background-color: #6c757d;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

._closeButton_fpjwh_160:hover {
  opacity: 0.9;
}

._createButton_fpjwh_174 {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

._createButton_fpjwh_174:hover {
  opacity: 0.9;
}

._formGroup_fpjwh_187 {
  margin-bottom: 15px;
}

._formGroup_fpjwh_187 label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

._formGroup_fpjwh_187 input,
._formGroup_fpjwh_187 textarea,
._formGroup_fpjwh_187 select {
  width: 100%;
  padding: 8px;
  border: 1px solid #aaa;
  border-radius: 3px;
  box-sizing: border-box;
}

._exerciseSelect_fpjwh_207 {
  margin-bottom: 10px;
}

._selectedExercises_fpjwh_211 {
  list-style: none;
  padding: 0;
  margin: 0;
  min-height: 40px;
}

._selectedExercises_fpjwh_211 li {
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 3px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

._exerciseInputs_fpjwh_228 {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

._exerciseInputs_fpjwh_228 label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: normal;
  font-size: 0.875rem;
}

._exerciseInputs_fpjwh_228 input {
  width: 60px;
}

._removeExerciseButton_fpjwh_247 {
  padding: 4px 8px;
  background-color: #dc3545;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 1rem;
}

._removeExerciseButton_fpjwh_247:hover {
  opacity: 0.9;
}

._formActions_fpjwh_261 {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

._submitButton_fpjwh_267 {
  padding: 10px 20px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

._submitButton_fpjwh_267:hover {
  opacity: 0.9;
}

._cancelButton_fpjwh_280 {
  padding: 10px 20px;
  background-color: #6c757d;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

._cancelButton_fpjwh_280:hover {
  opacity: 0.9;
}

._exerciseRow_fpjwh_293 {
  display: flex;
  gap: 10px;
  align-items: center;
}

._exerciseSelectInline_fpjwh_299 {
  flex: 1;
  padding: 8px;
  border: 1px solid #aaa;
  border-radius: 3px;
}

._addExerciseButton_fpjwh_306 {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 10px;
}

._addExerciseButton_fpjwh_306:hover {
  opacity: 0.9;
}

._editButton_fpjwh_320 {
  padding: 8px 16px;
  background-color: #ffc107;
  color: #000;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

._editButton_fpjwh_320:hover {
  opacity: 0.9;
}

._block_fpjwh_333 {
  border: 2px solid #007bff;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
  background-color: #f8f9fa;
}

._blockHeader_fpjwh_341 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-weight: bold;
}

._blockHeaderControls_fpjwh_349 {
  display: flex;
  align-items: center;
  gap: 10px;
}

._blockHeaderControls_fpjwh_349 label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: normal;
  font-size: 0.875rem;
}

._blockHeaderControls_fpjwh_349 input {
  width: 60px;
}

._removeBlockButton_fpjwh_367 {
  padding: 4px 8px;
  background-color: #dc3545;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.75rem;
}

._removeBlockButton_fpjwh_367:hover {
  opacity: 0.9;
}

._addBlockButton_fpjwh_381 {
  padding: 10px 20px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 10px;
}

._addBlockButton_fpjwh_381:hover {
  opacity: 0.9;
}

._blockDetails_fpjwh_395 {
  border: 1px solid #aaa;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #f8f9fa;
}

._blockDetailsHeader_fpjwh_403 {
  font-weight: bold;
  margin-bottom: 8px;
  color: #007bff;
}

._dragHandle_fpjwh_409 {
  cursor: grab;
  color: #999;
  font-size: 16px;
  padding: 0 5px;
  user-select: none;
}

._dragHandle_fpjwh_409:active {
  cursor: grabbing;
}

._dragOverlay_fpjwh_421 {
  padding: 10px 15px;
  background-color: white;
  border: 2px solid #007bff;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

._blockDragHandle_fpjwh_430 {
  cursor: grab;
  color: #007bff;
  font-size: 18px;
  padding: 0 10px;
  user-select: none;
}

._blockDragHandle_fpjwh_430:active {
  cursor: grabbing;
}

._sortableItem_fpjwh_442 {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

._sortableBlockWrapper_fpjwh_448 {
  display: flex;
  align-items: flex-start;
}

._exerciseItem_fpjwh_453 {
  flex: 1;
}

._emptyBlockDropzone_fpjwh_457 {
  min-height: 40px;
  border: 2px dashed #ccc;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}
._container_pk3kb_1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

._header_pk3kb_7 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
  row-gap: 12px;
}

._header_pk3kb_7 h1 {
  margin: 0;
  font-size: 24px;
}

._headerControls_pk3kb_21 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

._headerControls_pk3kb_21 > * {
  flex: 1 1 auto;
  min-width: 150px;
}

._statusSelect_pk3kb_32 {
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
}

._loading_pk3kb_38 {
  text-align: center;
  padding: 40px;
  color: #666;
}

._error_pk3kb_44 {
  background-color: #fee2e2;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

._error_pk3kb_44 button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #dc2626;
}

._saveNotification_pk3kb_63 {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #dcfce7;
  color: #16a34a;
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  gap: 16px;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

._saveNotification_pk3kb_63 button {
  background-color: #f59e0b;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: white;
}

._saveNotification_pk3kb_63 button:hover {
  background-color: #d97706;
}

._content_pk3kb_95 {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 20px;
}

/* Кнопка "Назад" - скрыта на десктопе */
._backButton_pk3kb_102 {
  display: none;
  background-color: #f3f4f6;
  border: 1px solid #d1d5db;
  color: #374151;
  font-size: 16px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
}

._backButton_pk3kb_102:hover {
  background-color: #e5e7eb;
}

/* Иконочная кнопка (карандаш/галочка) */
._iconButton_pk3kb_118 {
  background-color: #f3f4f6;
  border: 1px solid #d1d5db;
  color: #374151;
  font-size: 18px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  line-height: 1;
}

._iconButton_pk3kb_118:hover {
  background-color: #e5e7eb;
}

/* Группа кнопок в заголовке */
._headerActions_pk3kb_134 {
  display: flex;
  gap: 12px;
  align-items: center;
}

._sessionsList_pk3kb_140 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

._empty_pk3kb_146 {
  text-align: center;
  padding: 40px;
  color: #9ca3af;
}

._sessionCard_pk3kb_152 {
  background: #f9f9f9;
  border: 1px solid #aaa;
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

._sessionCard_pk3kb_152:hover {
  border-color: #007bff;
  background: #f0f7ff;
}

._sessionCard_pk3kb_152._active_pk3kb_166 {
  border-color: #007bff;
  background-color: #f0f7ff;
}

._sessionHeader_pk3kb_171 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

._workoutName_pk3kb_178 {
  font-weight: 600;
  font-size: 14px;
}

._status_pk3kb_32 {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
}

._status_pk3kb_32._in_progress_pk3kb_189 {
  background-color: #f3e8ff;
  border: 1px solid #7c3aed;
  color: #7c3aed;
}

._status_pk3kb_32._completed_pk3kb_195 {
  background-color: #dcfce7;
  border: 1px solid #16a34a;
  color: #16a34a;
}

._status_pk3kb_32._planned_pk3kb_201 {
  background-color: #dbeafe;
  border: 1px solid #1d4ed8;
  color: #1d4ed8;
}

/* Полоска прогресса */
._progressBar_pk3kb_208 {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 12px;
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 16px;
}

._progressDot_pk3kb_218 {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  cursor: default;
}

._dot_completed_pk3kb_230 {
  background-color: #16a34a;
  color: white;
}

._dot_in_progress_pk3kb_235 {
  background-color: #3b82f6;
  color: white;
  animation: _pulse_pk3kb_1 1.5s infinite;
}

._dot_skipped_pk3kb_241 {
  background-color: #f59e0b;
  color: white;
}

._dot_pending_pk3kb_246 {
  background-color: #e5e7eb;
  color: #9ca3af;
}

@keyframes _pulse_pk3kb_1 {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

._sessionMeta_pk3kb_261 {
  font-size: 12px;
  color: #6b7280;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

._sessionDetails_pk3kb_269 {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
}

._detailsHeader_pk3kb_275 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

._detailsHeader_pk3kb_275 h2 {
  margin: 0;
  font-size: 20px;
}

._exerciseCounter_pk3kb_287 {
  font-size: 16px;
  font-weight: 600;
  margin-right: auto;
}

._detailsActions_pk3kb_293 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}

._sessionInfo_pk3kb_302 {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: #6b7280;
  flex-wrap: wrap;
}

._plannedActions_pk3kb_311 {
  display: flex;
  column-gap: 8px;
  margin-left: auto;
}

._notes_pk3kb_317 {
  background-color: #f9fafb;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 14px;
}

._dateEditSection_pk3kb_325 {
  background-color: #f9fafb;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}

._dateEditSection_pk3kb_325 ._formGroup_pk3kb_332 {
  margin-bottom: 12px;
}

._dateEditSection_pk3kb_325 input[type="datetime-local"] {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
}

._exercisesList_pk3kb_344 {
  margin-top: 20px;
}

._exercisesList_pk3kb_344 h3 {
  margin: 0 0 12px 0;
  font-size: 16px;
}

._exerciseCard_pk3kb_353 {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}

._exerciseHeader_pk3kb_361 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

._exerciseName_pk3kb_368 {
  font-weight: 600;
  font-size: 14px;
}

._exerciseActions_pk3kb_373 {
  display: flex;
  column-gap: 8px;
}

._exerciseStatus_pk3kb_378 {
  margin-bottom: 8px;
}

._exerciseStatusBadge_pk3kb_382 {
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
}

._exerciseStatusBadge_pk3kb_382._pending_pk3kb_388 {
  background-color: #f3f4f6;
  color: #6b7280;
}

._exerciseStatusBadge_pk3kb_382._in_progress_pk3kb_189 {
  background-color: #f3e8ff;
  color: #7c3aed;
}

._exerciseStatusBadge_pk3kb_382._completed_pk3kb_195 {
  background-color: #dcfce7;
  color: #16a34a;
}

._exerciseStatusBadge_pk3kb_382._skipped_pk3kb_403 {
  background-color: #fef3c7;
  color: #d97706;
}

._exerciseParams_pk3kb_408 {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: #6b7280;
  flex-wrap: wrap;
}

._exerciseInputs_pk3kb_416 {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

._exerciseInputs_pk3kb_416 label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #374151;
}

._exerciseInputs_pk3kb_416 input {
  width: 60px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
}

/* Buttons */
._primaryButton_pk3kb_438 {
  background-color: #3b82f6;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

._primaryButton_pk3kb_438:hover {
  background-color: #2563eb;
}

._primaryButton_pk3kb_438:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
}

._secondaryButton_pk3kb_459 {
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

._secondaryButton_pk3kb_459:hover {
  background-color: #e5e7eb;
}

._successButton_pk3kb_475 {
  background-color: #16a34a;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

._successButton_pk3kb_475:hover {
  background-color: #15803d;
}

._finishButton_pk3kb_491 {
  background-color: #16a34a;
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

._finishButton_pk3kb_491:hover {
  background-color: #15803d;
}

._dangerButton_pk3kb_511 {
  background-color: #dc2626;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

._dangerButton_pk3kb_511:hover {
  background-color: #b91c1c;
}

._deleteButton_pk3kb_527 {
  background-color: transparent;
  color: #dc2626;
  border: 1px solid #dc2626;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

._deleteButton_pk3kb_527:hover {
  background-color: #dc2626;
  color: white;
}

._warningButton_pk3kb_545 {
  background-color: #f59e0b;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

._warningButton_pk3kb_545:hover {
  background-color: #d97706;
}

._smallButton_pk3kb_561 {
  background-color: #3b82f6;
  color: white;
  border: none;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
}

._smallButton_pk3kb_561:hover {
  background-color: #2563eb;
}

._smallSuccessButton_pk3kb_575 {
  background-color: #16a34a;
  color: white;
  border: none;
  min-width: 32px;
  height: 32px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

._smallSuccessButton_pk3kb_575:hover {
  background-color: #15803d;
}

._smallSuccessButton_pk3kb_575:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
}

._smallDangerButton_pk3kb_598 {
  background-color: #dc2626;
  color: white;
  border: none;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
}

._smallDangerButton_pk3kb_598:hover {
  background-color: #b91c1c;
}

._smallSecondaryButton_pk3kb_612 {
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
}

._smallSecondaryButton_pk3kb_612:hover {
  background-color: #e5e7eb;
}

._smallWarningButton_pk3kb_626 {
  background-color: #f59e0b;
  color: white;
  border: none;
  min-width: 32px;
  height: 32px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

._smallWarningButton_pk3kb_626:hover {
  background-color: #d97706;
}

._smallWarningButton_pk3kb_626:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
}

._toggleLabel_pk3kb_649 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
  cursor: pointer;
}

._toggleLabel_pk3kb_649 input {
  cursor: pointer;
}

._radioGroup_pk3kb_662 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

._radioLabel_pk3kb_669 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}

._radioLabel_pk3kb_669._disabled_pk3kb_677 {
  color: #9ca3af;
  cursor: not-allowed;
}

._radioLabel_pk3kb_669 input {
  cursor: pointer;
}

._radioLabel_pk3kb_669 input:disabled {
  cursor: not-allowed;
}

._hint_pk3kb_690 {
  font-size: 12px;
  color: #9ca3af;
}

/* Modal */
._modal_pk3kb_696 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

._modalContent_pk3kb_709 {
  background: white;
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  max-width: 400px;
  margin: 20px;
}

._modalContent_pk3kb_709 h2 {
  margin: 0 0 20px 0;
  font-size: 18px;
}

._formGroup_pk3kb_332 {
  margin-bottom: 16px;
}

._formGroup_pk3kb_332 label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

._formGroup_pk3kb_332 select,
._formGroup_pk3kb_332 input[type="datetime-local"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
}

._modalActions_pk3kb_744 {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 20px;
}

/* Мобильные стили - в конце файла чтобы переопределять базовые */
@media (max-width: 768px) {
  ._content_pk3kb_95 {
    grid-template-columns: 1fr;
  }

  /* Когда есть выбранная сессия - скрываем список и весь header */
  ._content_pk3kb_95:has(._sessionDetails_pk3kb_269) ._sessionsList_pk3kb_140 {
    display: none;
  }

  ._container_pk3kb_1:has(._sessionDetails_pk3kb_269) ._header_pk3kb_7 {
    display: none;
  }

  /* Убираем рамку и паддинг у деталей сессии на мобилке */
  ._sessionDetails_pk3kb_269 {
    border: none;
    border-radius: 0;
    padding: 0;
  }

  /* Показываем кнопку "Назад" на мобилке */
  ._backButton_pk3kb_102 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Кнопка показа мышц */
._musclesButton_pk3kb_782 {
  width: 32px;
  height: 32px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

._musclesButton_pk3kb_782:hover {
  background-color: #f3f4f6;
}

/* Модалка мышц */
._musclesModalContent_pk3kb_796 {
  background: white;
  border-radius: 12px;
  padding: 8px;
  position: relative;
  width: calc(100vw - 32px);
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}

._musclesModalImage_pk3kb_807 {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 8px;
}

._musclesModalClose_pk3kb_815 {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  font-size: 24px;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

._musclesModalClose_pk3kb_815:hover {
  color: #111827;
}

._musclesModalBody_pk3kb_836 {
  display: flex;
  gap: 4px;
  justify-content: center;
}

._musclesModalBody_pk3kb_836 > div {
  flex: 1;
  max-width: 50%;
}

._musclesList_pk3kb_847 {
  margin: 8px 0 0;
  padding: 8px 0 0;
  border-top: 1px solid #e5e7eb;
  font-size: 13px;
  color: #374151;
  line-height: 1.6;
  list-style: none;
  text-align: center;
}

._musclesList_pk3kb_847 li {
  padding: 2px 0;
}


body {
  margin: 0;
  font-family: "Ubuntu";
}

* {
  font-family: inherit;
  box-sizing: border-box;
}

/* Предотвращение zoom на мобильных устройствах при фокусе на input/select */

input,
select,
textarea,
button {
  font-size: 16px;
}

input {
  padding: 4px;
}

/* Скрытие стрелок для input type number */

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
