.go-back-btn {
  margin-bottom: 30px;
}

.section-title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
}

.current-photo-block img {
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
  width: 100px;
  height: 100px;
}

#select-schedule-period {
  max-width: 200px;
}

.schedule-table {
  max-width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 10px;
}
.schedule-table .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgb(204, 204, 204);
  border-radius: 15px;
  padding: 10px;
  height: 100%;
}
.schedule-table .col .header {
  text-align: center;
  font-size: 18px;
  line-height: 130%;
  font-weight: 600;
  margin-bottom: 10px;
}
.schedule-table .col .activity-card {
  align-items: center;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin-bottom: 10px;
  gap: 3px;
}
.schedule-table .col button.add-card {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: none;
  background-color: rgb(56, 115, 9);
  color: rgb(255, 255, 255);
  text-decoration: none;
  width: 22px;
  height: 22px;
  font-size: 25px;
  transition: background-color 0.3s;
}
.schedule-table .col button.add-card:hover {
  background-color: rgb(72, 141, 19);
}
.schedule-table .delete-card {
  cursor: pointer;
  user-select: none;
}
@media (max-width: 1399px) {
  .schedule-table {
    flex-direction: column;
    gap: 30px;
  }
}

#apply-schedule-button {
  min-width: 120px;
}

/*# sourceMappingURL=style.css.map */
