html {
  scroll-behavior: smooth;
}

/* pasek przewijania */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #d9b5a0;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background-color: #734a40;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #bf907e;
  cursor: grab;
}

body {
  background-color: #0d0907;
  font-family: "Michroma", sans-serif;
  margin: 0;
  padding: 0;
  left: 2.5vw;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 1200px;
  display: grid;
  position: absolute;
}

main {
  width: 80vw;
  background-color: #f0f0f0;
  margin: 0 auto;
  margin-top: 15vh;
  border-radius: 25px;
}

.homepage {
  margin-top: 0;
}

.userpage {
  margin-top: 0;
}

.main-content {
  max-width: 100vw;
  padding: 0 20px;
  /* lub inne wartości, które uważasz za odpowiednie */
  box-sizing: border-box;
  /* zapewnia, że padding nie zwiększa szerokości elementu */
  margin: 0 auto;
  /* wyśrodkowanie zawartości */
}

.current_site {
  color: #bf907e;
}

/* Styl dla menu */

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fade-in {
  animation: fadeIn 0.2s ease;
}

a {
  color: #734a40;
  text-decoration: none;
}

main a {
  padding: 15px;
}

.logo a {
  padding: 0;
}

h1 {
  color: #734a40;
  font-size: 5vw;
  font-weight: bolder;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

#o_nas {
  margin-bottom: 25px;
  text-align: center;
  width: 80%;
  margin-left: 10%;
  font-style: italic;
  font-size: 2vw;
  color: #bf907e;
}

#short_us {
  width: 90%;
  margin-left: 5%;
  text-align: center;
}

h2 {
  color: #bf907e;
  font-size: 3vw;
  font-weight: bold;
  margin-left: 5%;
  margin-top: 50px;
}

/* ORIGINAL HEADER STYLES */

/*
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #d9b5a0;
  color: #734a40;
  height: 11.25vh;
  min-height: 50px;
  margin: 0 auto;
  margin-bottom: 15vh;
  width: 95%;
  border-radius: 25px;
  position: fixed;
  top: 0;
  left: 2.5%;
  z-index: 1000;
}
*/

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  color: #734a40;
  height: 11.25vh;
  min-height: 50px;
  margin: 0 auto;
  margin-bottom: 10vh;
  width: 100%;
  position: fixed;
  border-radius: 0;
  top: 0;
  left: 0;
  z-index: 1000;
}

header ul {
  display: flex;
  list-style: none;
}

.logo {
  width: 20vw;
  height: auto;
  margin-left: 2vw;
  margin-right: 10vw;
}

.logo:hover {
  transform: scale(1.05);
}

li {
  margin-right: 70px;
  font-size: 1.5vw;
  align-content: center;
}

li:hover {
  color: #bf907e;
}

.hero {
  padding-top: 15vh;
  background-image: url("Graphics/Trainly_hero.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
}

.hero h1 {
  margin: 0;
}

#title {
  padding: 15px;
}

#subtitle {
  text-align: center;
  padding-bottom: 50px;
}

p {
  font-family: "Lato", sans-serif;
  font-size: 1.5vw;
  color: #0d0907;
  margin-bottom: 20px;
}

.paragraph {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 5%;
}

.our_offer {
  margin-top: 5vh;
  margin-bottom: 10%;
}

.photos {
  padding: 0 5vw;
  display: flex;
}

.photo {
  flex: 1;
  margin-right: 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.flip-card {
  background-color: transparent;
  width: 15vw;
  height: 25vh;
  border: 1px solid #f1f1f1;
  perspective: 1000px;
  /* Remove this if you don't want the 3D effect */
  margin-bottom: 15vh;
}

.flip-card h2 {
  font-size: 1.75vw;
  font-weight: bolder;
  text-align: center;
  margin-left: -1.5vw;
}

.flip-card p {
  font-size: 1.25vw;
}

/* This container is needed to position the front and back side */

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */

.flip-card-front {
  background-color: none;
  color: black;
}

.flip-card-front img {
  border: 10px solid #734a40;
  background-color: #d9b5a0;
  padding: 1vw;
  border-radius: 25px;
  min-height: 50%;
}

/* Style the back side */

.flip-card-back {
  margin-top: -5vh;
  background-color: none;
  color: white;
  transform: rotateY(180deg);
}

.photo:last-child {
  margin-right: 0;
}

.photos img {
  width: 15vw;
  height: auto;
}

.photo p {
  align-items: center;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
}

@keyframes scaleIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.description-box {
  background-color: #d9d9d9;
  color: #734a40;
  text-align: center;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  max-width: 60%;
  animation: scaleIn 0.5s ease;
}

.description-box h3 {
  font-size: 36px;
}

.button {
  background-color: #bf907e;
  color: #734a40;
  font-size: 1.5vw;
  padding: 10px 20px;
  border-radius: 25px;
  margin-top: 20px;
  width: 25vw;
  text-align: center;
  align-content: center;
  margin: 0 auto;
  font-weight: bolder;
  border: none;
}

.button:hover {
  background-color: #734a40;
  color: #bf907e;
  cursor: pointer;
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
  transition: 0.5s;
}

/*ORIGINAL FOOTER STYLES */

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #d9d9d9;
  font-size: 32px;
  color: #734a40;
  height: 11.25vh;
  min-height: 50px;
  margin: 0 auto;
  margin-top: 7.5vh;
  width: 95vw;
  border-radius: 25px;
}

footer .logo {
  width: auto;
  height: 10vh;
  margin-top: 1.5vh;
  margin-left: 2.5vw;
}

footer img {
  height: 10vh;
  width: auto;
}

.social-media-icons {
  height: 10vh;
  width: auto;
  margin-right: 6.5vh;
}

.icon:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

input[type="submit"]:hover {
  transition: 0.3s;
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
}

/* Contact.html */

.Formularz_kontaktowy {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}

.Formularz_kontaktowy form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.Formularz_kontaktowy h1 {
  color: #734a40;
  font-size: 24px;
  margin-top: 50px;
  margin-bottom: 20px;
}

.Formularz_kontaktowy input,
.Formularz_kontaktowy textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #bf907e;
  border-radius: 5px;
  font-size: 16px;
  resize: none;
}

.Formularz_kontaktowy textarea {
  height: 15vh;
}

.Formularz_kontaktowy input[type="file"] {
  width: auto;
  margin-top: 10px;
}

.Formularz_kontaktowy input[type="submit"] {
  width: 40%;
  background-color: #734a40;
  color: #d9d9d9;
  border: none;
  border-radius: 5px;
  padding: 10px;
  font-size: 1.5vw;
  cursor: pointer;
}

.Formularz_kontaktowy input[type="submit"]:hover {
  background-color: #bf907e;
}

/* login.html */

.Logowanie {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}

.Logowanie form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.Logowanie h1 {
  color: #734a40;
  font-size: 3vh;
  margin-top: 25px;
  margin-bottom: 25px;
}

.Logowanie input {
  width: 75%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #bf907e;
  border-radius: 5px;
  font-size: 1.25vw;
  resize: none;
}

.Logowanie input[type="submit"] {
  width: 40%;
  background-color: #734a40;
  color: #d9d9d9;
  border: none;
  border-radius: 5px;
  padding: 10px;
  font-size: 1.5vw;
  cursor: pointer;
}

.Logowanie input[type="submit"]:hover {
  background-color: #bf907e;
}

#loginError {
  color: red;
  display: none;
  font-weight: bold;
  text-align: center;
  margin-top: 0;
}

#register {
  color: #734a40;
  background-color: #bf907e;
  padding: 10px;
  text-decoration: none;
  font-size: 1.25vw;
  border-radius: 5px;
}

#register:hover {
  background-color: #d9b5a0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-down {
  animation: slideDown 0.5s ease-in-out forwards;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.zoom-in {
  animation: zoomIn 0.5s ease-in-out forwards;
}

.loading-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
}

.loading-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* register.html */

.Rejestracja {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}

.Rejestracja form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.Rejestracja h1 {
  color: #734a40;
  font-size: 24px;
  margin-top: 50px;
  margin-bottom: 20px;
}

.Rejestracja input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #bf907e;
  border-radius: 5px;
  font-size: 1.25vw;
  resize: none;
}

.Rejestracja input[type="submit"] {
  width: 40%;
  background-color: #734a40;
  color: #d9d9d9;
  border: none;
  border-radius: 5px;
  padding: 10px;
  font-size: 1.5vw;
  cursor: pointer;
}

.Rejestracja input[type="submit"]:hover {
  background-color: #bf907e;
}

.Rejestracja input[type="radio"] {
  display: none;
  /*ukrycie oryginalnych guzików */
}

.Rejestracja label {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
}

.Rejestracja label:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #734a40;
  margin-right: 5px;
  /* dodaj odstęp między "kropką" a etykietą */
  vertical-align: middle;
  /* wyśrodkowanie "kropki" */
}

.Rejestracja input[type="radio"]:checked + label:before {
  background-color: #734a40;
  /* Zmiana koloru "kropki" po zaznaczeniu */
}

.gender-selection {
  display: inline-block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.5s ease;
}

.modal-content {
  color: #734a40;
  background-color: #d9d9d9;
  margin: 25%;
  margin-top: 5%;
  padding: 20px;
  border: 1px solid #bf907e;
  width: 50%;
  text-align: center;
  border-radius: 25px;
}

.modal-content p {
  font-size: 24px;
}

.close {
  color: #d9b5a0;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #734a40;
  text-decoration: none;
  cursor: pointer;
}

/* userpage.html */

/* Dodane style dla paska nawigacyjnego po lewej stronie */

#welcome {
  margin-left: 150px;
}

.sidebar {
  width: 5vw;
  background-color: #bf907e;
  color: #734a40;
  font-size: 20px;
  margin-top: 15vh;
  margin-bottom: 16.5vh;
  padding-top: 25px;
  /* Wysunięcie paska nawigacyjnego pod logo */
  position: fixed;
  left: 2.5vw;
  top: 0;
  bottom: 0;
  border-radius: 25px;
}

#panel {
  display: none;
}

.sidebar ul {
  padding: 0;
  margin: 0 auto;
  list-style-type: none;
}

.sidebar ul li {
  display: list-item;
  padding: 12.5% 2.5%;
}

.sidebar a {
  color: #734a40;
  text-decoration: none;
}

.sidebar a:hover {
  background-color: #bf907e;
  color: #d9d9d9;
}

.sidebar img {
  width: 4.8vw;
  height: auto;
}

.sidebar img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.sidebar img.selected {
  background-color: #d9b5a0;
  border-radius: 25%;
}

.sidebar img.unselected {
  background-color: none;
  border-radius: none;
}

#user_logo:hover {
  transform: none;
}

.content {
  flex: 1;
  margin-top: 2.5%;
  padding: 20px;
  width: 97%;
  display: block;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 75vh;
  text-align: center;
  /* Centruje zawartość tekstu */
}

.content h2 {
  text-align: center;
}

.notification {
  border: 1px solid #bf907e;
  background-color: #f9f9f9;
  color: #734a40;
  border-radius: 15px;
  padding: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  width: 50vw;
  justify-content: center;
  max-height: 75vh;
  margin-left: 12.5vw;
}

.notification_visible {
  max-height: 37.5vh;
  overflow-y: auto;
}

/* Dodatkowy styl dla powiadomienia w settings.php */

.success_notification {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  border: 1px solid #bf907e;
  margin-top: 15vh;
  padding: 15px;
  z-index: 9999;
  display: none;
  width: auto;
  text-align: center;
}

#success_message {
  color: #d9b5a0;
  font-weight: bold;
}

.notification:hover {
  background-color: #e9e9e9;
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
}

#overlay_notification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
}

#notification-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 80%;
  max-height: 80%;
  overflow: auto;
  animation: fadeIn 0.3s;
}

#notification-modal h2 {
  margin-top: 0;
  font-size: 30px;
  margin-bottom: 2.5%;
  text-align: center;
}

#notification-modal p {
  font-size: 24px;
  text-align: center;
}

.notification {
  cursor: pointer;
}

.close-btn {
  position: absolute;
  font-size: 36px;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: #734a40;
}

.close-btn:hover {
  color: #bf907e;
}

.userinfo {
  margin-top: 1.5vh;
  background-image: url("Graphics/userpage_hero.png");
  background-size: contain;
  background-position: center bottom;
  border-radius: 25px;
  height: 47vh;
  margin-left: 1vw;
}

hr {
  margin-left: 1vw;
}

.userinfo h2 {
  color: #d9d9d9;
  align-items: center;
  justify-content: center;
  text-align: left;
  font-size: 7.5vh;
}

.userinfo p {
  color: #d9b5a0;
}

#clock,
#currentDate {
  color: #734a40;
  font-size: 24px;
  font-weight: bold;
  cursor: default;
}

#user_button {
  width: 25vw;
  text-align: center;
  cursor: pointer;
  margin-top: 5vh;
  font-weight: bolder;
  font-size: 4vh;
}

.settings {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}

.settings form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.settings h2 {
  color: #734a40;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.settings input {
  width: 75%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #bf907e;
  border-radius: 5px;
  font-size: 16px;
  resize: none;
}

.settings input[type="submit"] {
  width: 40%;
  background-color: #734a40;
  color: #d9d9d9;
  border: none;
  border-radius: 5px;
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
}

.settings input[type="submit"]:hover {
  background-color: #bf907e;
}

#password_error {
  color: red;
  display: none;
  font-weight: bold;
  text-align: center;
}

/* Dodajemy stylizację dla hamburger ikony */

.hamburger {
  display: none;
  /* Ukrywamy hamburger ikonę na początku */
  cursor: pointer;
}

/* Lista ćwiczeń */

* {
  box-sizing: border-box;
}

/* Kalendarz */

#cals {
  display: none;
}

#planModal {
  display: none;
}

#trainingDescriptionInput {
  width: 75%;
  display: block;
  margin-left: 12.5%;
  padding: 10px;
  margin-bottom: 20px;
  border: 3px solid #bf907e;
  border-radius: 25px;
  font-size: 1vw;
  resize: none;
}

#trainingDescriptionInput:focus {
  border: 1px solid #734a40;
}

#trainingDescriptionInput::placeholder {
  color: #734a40;
}

#trainingTimeInput {
  padding: 8px;
  border: 3px solid #bf907e;
  border-radius: 10px;
  font-size: 1vw;
  margin-bottom: 5%;
}

#trainingTimeInput:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.calendar {
  margin-top: 7.5vh;
  width: 100%;
  margin-left: 2vw;
  margin-right: 2vw;
}

/* Month header */

.month {
  padding: 2.5% 5%;
  width: 100%;
  background: #734a40;
  text-align: center;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
  justify-content: center;
}

.month h2 {
  color: #d9d9d9;
  font-weight: bolder;
  font-size: 2.5vw;
  margin: 0;
  align-items: center;
}

/* Month list */

.month ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.month ul li {
  color: white;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* Previous button inside month header */

.month .prev {
  float: left;
  padding-top: 11.25vh;
  margin-left: 2.5vw;
}

/* Next button */

.month .next {
  float: right;
  padding-top: 10vh;
  margin-right: 2.5vw;
}

/* Weekdays (Mon-Sun) */

.weekdays {
  margin: 0;
  padding: 10px 0;
  background-color: #bf907e;
}

.weekdays li {
  display: inline-block;
  width: 5vw;
  color: #d9d9d9;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  padding-left: 2.5%;
  font-size: 3vh;
}

/* Days (1-31) */

.days {
  padding: 10px 0;
  background: #d9d9d9;
  margin: 0;
  padding-left: 5vw;
  text-align: left;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.days li {
  list-style-type: none;
  display: inline-block;
  width: 5vw;
  text-align: center;
  align-items: center;
  margin-bottom: 5px;
  font-size: 2vh;
  font-weight: bold;
  color: #bf907e;
  left: 10%;
}

/* Highlight the "current" day */

.days li .active {
  padding: 5px;
  background: #734a40;
  color: #d9d9d9 !important;
  border-radius: 25%;
}

.days li .active:hover {
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
  background: #bf907e;
  cursor: pointer;
}

.days li .inactive:hover {
  background: transparent;
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
  padding: 5px;
  cursor: pointer;
  border-radius: 25%;
}

#startTraining {
  display: block;
  border: none;
  padding: 10px;
  font-size: 1.5vw;
  cursor: pointer;
  margin-top: 25px;
}

#planTraining {
  display: none;
  border: none;
  padding: 10px;
  font-size: 1.5vw;
  cursor: pointer;
  margin-top: 25px;
}

.last-clicked {
  color: #bf907e;
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
  padding: 5px;
  border-radius: 25%;
}

.planned {
  color: #734a40;
  box-shadow: #0d0907;
}

#plannedInfo {
  display: none;
  color: #734a40;
  font-size: 1vw;
  font-weight: bold;
  font-family: "Michroma", sans-serif;
  width: auto;
  margin-bottom: 1%;
  margin-top: 1%;
}

.well-done {
  border: 2px solid #734a40;
  border-radius: 50%;
  padding: 4px;
  background-color: #d9b5a0;
  color: #734a40;
}

.well-done:hover {
  background-color: #734a40;
  color: #bf907e;
  cursor: pointer;
  border-radius: 50%;
}

.active .well-done {
  border-radius: 50%;
}

#view-report-btn {
  display: none;
  border: none;
  padding: 10px;
  font-size: 1.5vw;
  cursor: pointer;
  margin-top: 25px;
}

#view-report-btn:hover {
  background-color: #734a40;
  color: #d9b5a0;
}

/* Statystyki */

#stats {
  font-size: 2.5vw;
  margin-top: 3vh;
}

.statystyki h3 {
  margin: 0;
  margin-top: 1vh;
  margin-bottom: 0.5vh;
  align-items: center;
}

.statistics {
  width: 80%;
  margin-left: 10%;
  background-color: #d9d9d9;
  border-radius: 50px;
  overflow: hidden;
}

.statistics:hover {
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
}

.training,
.time,
.calories,
.intensitivity {
  background-color: #734a40;
  text-align: right;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
  color: #d9b5a0;
  font-weight: bold;
  border-radius: 50px;
}

/* Style the list */

.opcje_listy {
  list-style-type: none;
  border: 2px solid #734a40;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.25s;
  border-radius: 25px;
  text-align: center;
  width: 25%;
  margin-left: 2.5vw;
  background: url("Graphics/Twoja_lista.png");
  display: inline-block;
}

/* Add shadows on hover */

.opcje_listy:hover {
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

/* Nagłówki list */

.opcje_listy .header {
  background-color: #734a40;
  color: #d9b5a0;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  height: 10vh;
}

.opcje_listy h2 {
  font-size: 90%;
  justify-content: center;
  text-align: center;
  padding-left: 0;
  padding-top: 0;
}

/* List items */

.opcje_listy li {
  margin-right: 0;
  text-align: center;
  align-items: center;
}

.your_list {
  background-image: url("Graphics/Twoja_lista.png");
  min-height: 25vh;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  background-size: cover;
  background-position: center;
}

.create_list {
  background-image: url("Graphics/Create_list.png");
  min-height: 25vh;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  background-size: cover;
  background-position: center;
}

.our_list {
  background-image: url("Graphics/Our_list.png");
  min-height: 25vh;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  background-size: cover;
  background-position: center;
}

/* Change the width of the three columns to 100%
(to stack horizontally on small screens) */

/* create_list.html */

/* Include the padding and border in an element's total width and height */

#addEx {
  box-sizing: border-box;
  min-height: 27.5vh;
}

/* Remove margins and padding from the list */

#addEx ul {
  margin: 0;
  padding: 0;
}

/* Style the list items */

#addEx li {
  border: 1px solid #734a40;
  list-style-type: none;
  width: 50%;
  left: 23%;
  position: relative;
  padding: 12px;
  background: #d9b5a0;
  font-size: 3vh;
  transition: 0.2s;
  /* make the list items unselectable */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  color: #734a40;
  font-weight: bolder;
  border-radius: 25px;
}

/* Set all odd list items to a different color (zebra-stripes) */

#addEx li:nth-child(odd) {
  background: #bf907e;
}

/* Darker background-color on hover */

#addEx li:hover {
  box-shadow: 0 20px 24px 0 rgba(0, 0, 0, 0.5);
  color: rgba(65, 31, 3, 0.3);
}

/* Style the close button */

.delete {
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px;
  font-size: 28px;
  font-weight: bold;
  color: #d9d9d9;
}

.delete:hover {
  color: red;
  border-radius: 50%;
  cursor: pointer;
}

#konto .delete {
  display: none;
}

/* Style the header */

.create {
  background-color: #734a40;
  padding: 30px 40px;
  color: white;
  text-align: center;
}

/* Clear floats after the header */

.create:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the input */

#myInput {
  margin: 0;
  margin-left: 25%;
  border: none;
  border-radius: 25px;
  width: 40%;
  padding: 10px;
  float: center;
  font-size: 3vh;
  text-align: center;
}

/* Style the "Add" button */

.addBtn {
  padding: 10px;
  margin-left: 2.5vw;
  margin-right: 5vw;
  width: 15%;
  background: #d9d9d9;
  color: #734a40;
  float: right;
  text-align: center;
  font-size: 3vh;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 25px;
  font-weight: bolder;
}

.addBtn:hover {
  background-color: #d9b5a0;
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
}

#save-list {
  margin-top: 2.5vh;
  margin-bottom: 2.5vh;
  background-color: #734a40;
  color: #d9d9d9;
}

#save-list:hover {
  color: #d9b5a0;
}

#listNameInput {
  width: 50%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #bf907e;
  border-radius: 5px;
  font-size: 1vw;
  resize: none;
}

/* Our_list.html */

#our-lists {
  display: none;
}

.nasze-listy {
  width: 100%;
  min-height: 400px;
  display: inline-block;
  margin-left: 2.5%;
  margin-right: 2.5%;
  margin-top: 15vh;
}

.nasze-listy h3 {
  font-size: 3vh;
  color: #734a40;
}

.nasze-listy p {
  font-size: 3vh;
  color: #0d0907;
}

.nasze-listy ul {
  margin: 0;
  padding: 0;
}

.nasze-listy li {
  align-items: center;
  justify-content: center;
  background-image: url("Graphics/Our_lists_choice.png");
  background-size: cover;
  background-position: center;
  color: #d9b5a0;
  list-style-type: none;
  padding: 10vh;
  text-align: center;
  width: 25%;
  height: 30%;
  display: inline-block;
  border-radius: 25px;
  margin-bottom: 50vh;
  font-weight: bolder;
  border: 2px solid #734a40;
}

.nasze-listy li:hover {
  background-color: #bf907e;
  color: #734a40;
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.nasze-listy li .list-name {
  width: 90%;
  /* Szerokość 90% dla nazwy listy */
  word-wrap: break-word;
  /* Zawijanie tekstu */
}

.list-item {
  min-height: 100px;
}

.badge {
  background-color: #734a40;
  color: #d9d9d9;
  border-radius: 50%;
  padding: 5px;
  text-align: center;
  margin-left: 5px;
  font-size: 2.5vh;
}

#our_addEx {
  box-sizing: border-box;
}

/* Remove margins and padding from the list */

#our_addEx ul {
  margin: 0;
  padding: 0;
}

/* Style the list items */

#our_addEx li {
  border: 1px solid #734a40;
  list-style-type: none;
  width: 80%;
  left: 7.5%;
  position: relative;
  padding: 12px;
  background: #d9b5a0;
  font-size: 3vh;
  transition: 0.2s;
  /* make the list items unselectable */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  color: #734a40;
  font-weight: bolder;
  border-radius: 25px;
}

/* Set all odd list items to a different color (zebra-stripes) */

#our_addEx li:nth-child(odd) {
  background: #bf907e;
}

/* Darker background-color on hover */

#our_addEx li:hover {
  box-shadow: 0 20px 24px 0 rgba(0, 0, 0, 0.5);
  color: rgba(65, 31, 3, 0.3);
}

#myModal .create {
  border-radius: 25px;
  padding: 5px;
}

#myModal .close {
  margin-right: 2.5%;
  color: #bf907e;
}

#myModal .close:hover {
  color: #0d0907;
}

.closing {
  color: #d9d9d9;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.closing:hover,
.closing:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}

#our_addList {
  background-color: #d9d9d9;
  border: 3px solid #734a40;
  color: #734a40;
}

#our_rozpocznij {
  margin-top: 2.5vh;
  border: 3px solid #d9b5a0;
  background-color: #d9d9d9;
}

/* your_list.html */

.Twoje h2 {
  font-size: 3vh;
  justify-content: center;
  text-align: center;
  padding-left: 0;
  padding-top: 0;
  margin-top: 15vh;
  margin-bottom: 1vh;
}

#twoje_listy_h2 {
  margin-left: -2.5vw;
}

.Twoje a {
  margin-top: 5vh;
  margin-left: 30vw;
  margin-bottom: 5vh;
  padding: 10px;
  border: none;
}

.twoje-listy {
  width: 100%;
  display: inline-block;
  margin-left: 2.5%;
  margin-right: 2.5%;
}

.twoje-listy h3 {
  font-size: 3vh;
  color: #734a40;
}

.twoje-listy p {
  font-size: 3vh;
  color: #0d0907;
}

.twoje-listy ul {
  margin: 0;
  padding: 0;
}

.twoje-listy li {
  align-items: center;
  justify-content: center;
  background-image: url("Graphics/Your_list_choice.png");
  background-size: cover;
  background-position: center;
  color: #d9b5a0;
  list-style-type: none;
  padding: 1vh;
  text-align: center;
  width: 25%;
  display: inline-block;
  border-radius: 25px;
  margin-bottom: 2.5vh;
  font-weight: bolder;
  border: 2px solid #734a40;
}

.twoje-listy li:hover {
  background-color: #bf907e;
  color: #734a40;
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
  cursor: pointer;
  .badge {
    background-color: #d9b5a0;
    color: #734a40;
  }
}

.twoje-listy h3 {
  background-color: #734a40;
  color: #d9b5a0;
  border-radius: 25px;
}

.Widok_list {
  height: 40vh;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 7.5vh;
  padding: 10px;
}

#exercise-list li {
  list-style-type: none;
  color: #734a40;
  font-weight: bolder;
  padding: 5px;
  border-radius: 25px;
  border: 1px solid #734a40;
}

#exercise-list li:hover {
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
  background-color: #d9b5a0;
}

/* Training.html */

#train {
  text-align: center;
}

.train_mob .columns {
  text-align: center;
  margin: 0;
  margin-left: -2.5%;
}

.go-on-fire {
  background-image: url("Graphics/Go_on_fire.png");
  min-height: 25vh;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  background-size: cover;
  background-position: center;
}

#exercise-list-training li {
  list-style-type: none;
  color: #734a40;
  font-weight: bolder;
  padding: 5px;
  border-radius: 25px;
  border: 3px solid #734a40;
  margin-bottom: 5px;
}

#exercise-list-training li:hover {
  background-color: #d9b5a0;
  cursor: pointer;
}

#exercise-list-training li.selected {
  background-color: #d9b5a0;
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
  border: #bf907e;
}

#exercise-list-training li.selected:hover {
  background-color: #bf907e;
}

/*TRAIN.html*/

#twoj_trening {
  height: auto;
  width: 100%;
  margin-top: 15vh;
  margin-left: 10%;
}

.timer {
  font-size: 3vh;
  font-family: "Michroma", sans-serif;
  font-weight: bolder;
  font-style: italic;
  color: #734a40;
  min-width: 10vw;
}

#end_training {
  background-color: #d9b5a0;
  border-radius: 50px;
  padding: 10px;
  font-weight: bolder;
  transition: 0.5s;
}

#end_training:hover {
  background-color: #734a40;
  color: #d9d9d9;
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
}

#trenuj {
  text-align: center;
  font-size: 5vh;
  color: #734a40;
  margin-left: -2.5%;
  margin-top: 2.5vh;
}

#footer_train {
  display: none;
}

#end_training {
  margin-bottom: 25px;
}

#mobile_end_training {
    display: none;
}

#exercise-list li {
  list-style-type: none;
  color: #734a40;
  font-weight: bolder;
  padding: 0;
  border-radius: 30px;
  border: 3px solid #d9b5a0;
  margin-bottom: 5px;
}

.collapsible {
  background-color: #734a40;
  color: #d9d9d9;
  cursor: pointer;
  width: 100%;
  padding: 0;
  border: none;
  text-align: center;
  font-weight: bolder;
  outline: none;
  font-size: 2vw;
  border-radius: 25px;
}

.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #bf907e;
  color: #734a40;
}

.collapsible:hover {
  background-color: #bf907e;
}

iframe {
  width: 35%;
  margin-left: 32.5%;
}

.Trening {
  display: block;
  margin-left: 2.5%;
  margin-top: 5vh;
}

.Trening input {
  width: 7.5%;
  margin-left: 15px;
  margin-right: 2.5%;
  font-size: 1.5vw;
  padding: 1vh;
  border: 3px solid #734a40;
  border-radius: 50px;
}

.Trening label {
  font-size: 1.25vw;
  font-weight: bold;
}

.myCheck {
  width: 7.5vh;
  height: 7.5vh;
  margin: 2.5vh 0;
  margin-left: 47.5%;
  font-size: 1.5vw;
  border-radius: 50%;
  border: 3px solid #734a40;
}

.myCheck:hover {
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
  cursor: pointer;
  background-size: cover;
  background-position: center;
}

.checked {
  background-image: url("Graphics/checked.png");
  background-size: cover;
  background-position: center;
}

.checked_col {
  color: #bf907e;
  background-color: #734a40;
}

.checked_col:hover {
  background-color: #bf907e;
  color: #d9d9d9;
}

.exercise_details {
  padding: 0 18px;
  width: 100%;
  max-width: 71vw;
  display: none;
  overflow: hidden;
  background-color: #d9d9d9;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.exercise_details p {
  font-size: 1.5vw;
  text-align: center;
  font-style: italic;
  width: 75%;
  margin-left: 12.5%;
}

#addExerciseForm {
  text-align: center;
  margin-top: 5%;
  border: 3px solid #734a40;
  width: 75%;
  margin-left: 12.5%;
  border-radius: 100px;
  margin-bottom: 25px;
}

#addExerciseForm input,
textarea {
  width: 75%;
  padding: 10px;
  margin-bottom: 20px;
  border: 3px solid #bf907e;
  border-radius: 25px;
  font-size: 1vw;
  resize: none;
}

#addExerciseForm textarea {
  min-height: 75px;
}

#addExerciseForm input:focus,
textarea:focus {
  border: 3px solid #734a40;
}

#addExerciseForm input[type="button"] {
  width: 40%;
  background-color: #734a40;
  color: #d9d9d9;
  border: none;
  border-radius: 5px;
  padding: 10px;
  font-size: 1vw;
  cursor: pointer;
}

#confirmEndTraining {
  font-weight: bold;
  font-style: italic;
  border: 3px solid #734a40;
  background-color: #d9d9d9;
  color: #734a40;
}

#anuluj {
  width: auto;
  padding: 10px;
  margin-left: 2.5vw;
  border: 3px solid #bf907e;
  background-color: #d9d9d9;
  color: #734a40;
}

#czy_na_pewno {
  font-size: 24px;
}

/* ----------------------------------- */

/* MEDIA QUERIES */

/* Ukrywamy standardowe menu przy szerokości ekranu poniżej 1200px */

@media screen and (max-width: 1200px) {
  body {
    transform: scale(0.95);
    transform-origin: top left;
    left: 0;
    margin: 0;
    overflow-x: hidden;
    height: auto;
    min-height: 100%;
  }
  main {
    width: 90%;
    height: auto;
    margin-left: 5%;
  }
  .menu {
    position: fixed;
    display: none;
    margin-top: 5vh;
    right: 5%;
    width: 30%;
    text-align: center;
    background-color: #d9d9d9;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  .menu.active {
    display: block;
  }
  .menu ul {
    display: block;
  }
  .menu ul li {
    font-size: 2vw;
    font-weight: bolder;
    width: 100%;
  }
  .menu ul li:hover {
    background-color: #d9b5a0;
    color: #734a40;
    border-radius: 25px;
    box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
  }
  .hamburger {
    display: block;
    width: 50px;
    height: 50%;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    z-index: 1000;
  }
  .line {
    width: 100%;
    height: 3px;
    background-color: #734a40;
    margin: 5px 0;
    transition: all 0.5s ease;
  }
  .clicked .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .clicked .line:nth-child(2) {
    opacity: 0;
  }
  .clicked .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  h2 {
    font-size: 5vw;
  }
  p {
    font-size: 3vw;
  }
  .hero {
    margin-top: 11.25vh;
    margin-bottom: 2.5%;
    height: 100vh;
    background-position: bottom right;
  }
  .photos {
    margin-top: 5%;
    display: flex;
    margin-bottom: 2.5%;
  }
  .flip-card-front img {
    border: 10px solid #734a40;
    background-color: #d9b5a0;
    width: 100%;
    padding: 5%;
    border-radius: 25px;
  }
  .flip-card h2 {
    font-size: 2vw;
  }
  .flip-card p {
    font-size: 1.5vw;
  }
  #how_to_start {
    margin-top: 10%;
  }
  .button {
    margin-top: 7.5%;
    font-size: 3vw;
    width: 75%;
  }
  /* Logowanie */
  .log_mob {
    height: auto;
  }
  .Logowanie {
    width: 90%;
    margin-left: 5%;
  }
  .Logowanie h1 {
    font-size: 7.5vh;
  }
  .Logowanie input {
    width: 75%;
    font-size: 3vw;
    padding: 2.5vh;
    border: 5px solid #734a40;
    border-radius: 50px;
  }
  #login {
    margin-top: 2.5vh;
  }
  .Logowanie input[type="submit"] {
    font-size: 3vw;
    padding: 2.5vh;
    border-radius: 100px;
    margin-top: 2.5vh;
  }
  .Logowanie h3 {
    font-size: 2.5vw;
    margin-top: 5vh;
    margin-bottom: 7.5vh;
  }
  #register {
    font-size: 2vw;
    border-radius: 100px;
    padding: 2.5vh;
  }
  /* Rejestracja */
  .reg_mob {
    height: auto;
  }
  .Rejestracja {
    width: 100%;
  }
  .Rejestracja h1 {
    font-size: 3vw;
    margin-bottom: 7.5vh;
  }
  .Rejestracja input {
    width: 75%;
    font-size: 3vw;
    padding: 2.5vh;
    border: 3px solid #734a40;
    border-radius: 50px;
  }
  .gender-selection {
    font-size: 3vw;
  }
  .Rejestracja label:before {
    width: 2.5vw;
    height: 2.5vw;
    border: 5px solid #734a40;
    margin-right: 2vw;
  }
  .Rejestracja input[type="submit"] {
    width: 50%;
    font-size: 3vw;
    padding: 2.5vh;
    color: #d9b5a0;
    border-radius: 100px;
    margin-top: 5vh;
  }
  .Rejestracja h3 {
    font-size: 3vw;
    margin-top: 5vh;
    margin-bottom: 5vh;
  }
  .modal-content {
    margin: 10%;
    margin-top: 50%;
    padding: 5vh;
    border: 5px solid #734a40;
    width: 80%;
    text-align: center;
    border-radius: 50px;
    position: fixed;
  }
  .modal-content p {
    font-size: 3vw;
  }
  .close {
    font-size: 5vw;
    font-weight: bolder;
  }
  /* Contact.html */
  .con_mob {
    height: auto;
  }
  .Formularz_kontaktowy {
    width: 90%;
    margin: 5%;
    margin-top: 5vh;
  }
  .Formularz_kontaktowy h1 {
    font-size: 5vw;
    margin-bottom: 7.5vh;
  }
  .Formularz_kontaktowy input,
  .Formularz_kontaktowy textarea {
    padding: 2.5vh;
    margin-bottom: 20px;
    border-radius: 50px;
    border: 3px solid #734a40;
    font-size: 3vw;
  }
  .Formularz_kontaktowy textarea {
    height: 75vh;
  }
  .plik {
    font-size: 2.5vw;
  }
  .Formularz_kontaktowy input[type="file"] {
    width: 90%;
    margin-top: 5vh;
  }
  .Formularz_kontaktowy input[type="submit"] {
    width: 40%;
    border-radius: 100px;
    padding: 2.5vh;
    font-size: 3vw;
  }
  .success_notification {
    top: 15vh;
    left: 50%;
    width: 75%;
    border-radius: 25px;
    border: 3px solid #bf907e;
    padding: 5vh;
    font-size: 2.5vw;
  }
  /* Settings */
  .set_mob {
    height: auto;
  }
  .settings {
    width: 90%;
    margin: 5%;
    margin-top: 5vh;
  }
  .settings h2 {
    font-size: 5vw;
    margin-top: 5vh;
    margin-bottom: 5vh;
  }
  .settings input {
    width: 90%;
    padding: 2.5vh;
    margin-bottom: 5vh;
    border: 3px solid #734a40;
    border-radius: 25px;
    font-size: 3vw;
  }
  .settings input[type="submit"] {
    width: 75%;
    font-size: 3vw;
    padding: 2.5vh;
    border-radius: 100px;
    margin-top: 10vh;
  }
  #password_error {
    font-size: 2vw;
  }
  /*-------------------------------*/
  /* Twój panel */
  .user_mob {
    height: auto;
    width: 80%;
    margin-left: 15%;
  }
  .content {
    width: 100%;
    margin-top: 1vh;
    margin-left: 0;
    height: auto;
  }
  .sidebar {
    width: 7.5%;
    height: auto;
    max-height: 35vw;
    margin-top: 15vh;
    margin-left: 1.25%;
    z-index: 1;
  }
  .sidebar ul {
    padding: 0;
    margin: 0 auto;
    list-style-type: none;
  }
  .sidebar ul li {
    padding: 2.5% 2.5%;
  }
  #panel {
    display: block;
  }
  .sidebar img {
    margin-top: 40%;
    margin-left: 1.25vw;
    width: 5vw;
    height: auto;
  }
  .userinfo {
    margin-top: 5vh;
    background-image: url("Graphics/userpage_hero.png");
    background-size: contain;
    height: 47.5vh;
    background-position: center top;
    border-radius: 25px;
  }
  hr {
    margin-left: 1vw;
  }
  .userinfo h2 {
    font-size: 5vw;
  }
  .userinfo p {
    font-size: 3vw;
  }
  #clock,
  #currentDate {
    font-size: 2vw;
  }
  #user_button {
    width: 75%;
    font-size: 3vw;
    padding: 2.5vh;
    margin-top: 1vh;
  }
  /* Kalendarz */
  .calendar {
    margin-top: 10vh;
    margin-left: 0;
    width: 100%;
  }
  /* Month header */
  .month {
    padding: 2.5% 2.5%;
    width: 100%;
  }
  .month h2 {
    margin-top: -5vh;
    font-size: 3vw;
  }
  /* Weekdays (Mon-Sun) */
  .weekdays {
    margin: 0;
    padding: 10px 0;
  }
  .weekdays li {
    width: 5vw;
    font-weight: bolder;
    padding-right: 5%;
    padding-left: 0;
    font-size: 5vh;
  }
  /* Days (1-31) */
  .days {
    padding: 10px 0;
  }
  .days li {
    width: 5vw;
    margin-bottom: 1vw;
    margin-right: 13vh;
    font-size: 3vh;
    font-weight: bolder;
    left: 7.5vh;
  }
  #startTraining {
    max-width: 50%;
    padding: 2.5vh;
    font-size: 3vw;
    font-weight: bolder;
    margin-top: 5vh;
    border-radius: 100px;
  }
  #planTraining {
    max-width: 50%;
    padding: 2.5vh;
    font-size: 3vw;
    font-weight: bolder;
    margin-top: 5vh;
    border-radius: 100px;
  }
  /* Powiadomienia */
  .notification {
    padding: 2.5vh;
    margin-bottom: 2.5vh;
    width: 75%;
    margin-left: 12.5%;
  }
  #notes_h2 {
    margin-top: 5vh;
    font-size: 5vw;
    margin-bottom: 5vh;
  }
  .notification_visible {
    min-height: 45vh;
    overflow-y: auto;
    font-size: 2vw;
  }
  #overlay_notification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
  }
  #notification-modal {
    padding: 2.5vh;
    border-radius: 25px;
    width: 80%;
    max-height: 80%;
  }
  #notification-modal h2 {
    font-size: 5vw;
    margin-bottom: 5vh;
  }
  #notification-modal p {
    font-size: 3vw;
  }
  .close-btn {
    font-size: 5vw;
    right: 10px;
  }
  /* Statystyki */
  #stats {
    font-size: 5vw;
    margin-top: 5vh;
    margin-bottom: 10vh;
  }
  .statystyki h3 {
    font-size: 2.5vw;
  }
  .statistics {
    width: 90%;
    margin-left: 5%;
  }
  .training {
    font-size: 1.5vw;
    padding-top: 2.5vh;
    padding-bottom: 2.5vh;
    padding-right: 2.5vh;
  }
  .time {
    font-size: 1.5vw;
    padding-top: 2.5vh;
    padding-bottom: 2.5vh;
    padding-right: 2.5vh;
  }
  .calories {
    font-size: 1.5vw;
    padding-top: 2.5vh;
    padding-bottom: 2.5vh;
    padding-right: 2.5vh;
  }
  .intensitivity {
    font-size: 1.5vw;
    padding-top: 2.5vh;
    padding-bottom: 2.5vh;
    padding-right: 2.5vh;
  }
  /* Opcje listy */
  #lists {
    display: block;
    font-size: 5vw;
    margin-top: 5vh;
  }
  .columns {
    margin-top: 5vw;
  }
  .opcje_listy .header {
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    width: 100%;
    height: 10%;
  }
  .opcje_listy h2 {
    font-size: 2vw;
  }
  .your_list {
    min-height: 12.5vw;
  }
  .create_list {
    min-height: 12.5vw;
  }
  .our_list {
    min-height: 12.5vw;
  }
  /* Our_list.html */
  #our-lists {
    display: block;
    text-align: center;
    font-size: 3vw;
    margin-top: 5vh;
    margin-bottom: -10vh;
  }
  .nasze-listy {
    width: 100%;
    display: inline-block;
    max-height: 125vh;
    margin-bottom: 5vh;
  }
  .nasze-listy h3 {
    font-size: 2vw;
  }
  .nasze-listy p {
    font-size: 1.5vw;
  }
  .nasze-listy li {
    padding: 2.5vh;
    min-height: 50vh;
    margin-bottom: 5vh;
  }
  .badge {
    padding: 2.5vh;
    font-size: 1vw;
  }
  #create-list {
    margin-top: 0;
  }
  #our_addEx li {
    padding: 0.5vh;
    font-size: 2vw;
    border: 3px solid #734a40;
  }
  #myModal .create {
    padding: 2.5vh;
    font-size: 2.5vw;
  }
  #myModal {
    margin-top: -45%;
  }
  .addBtn {
    font-size: 2vw;
    width: auto;
    padding: 2.5vh;
    margin-top: 2.5vh;
  }
  #myInput {
    font-size: 2.5vw;
    padding: 2.5vh;
    margin-top: 2.5vh;
  }
  #myModal .close {
    font-size: 3vw;
  }
  .closing {
    font-size: 3vw;
    font-weight: bolder;
    align-items: center;
  }
  #our_name {
    font-size: 2.5vw;
    margin-top: 5vh;
    margin-bottom: 5vh;
  }
  #listNameInput {
    font-size: 2.5vw;
    border-radius: 50px;
    padding: 2.5vh;
    min-width: 75%;
  }
  /* create_list.html */
  #create-list h2 {
    font-size: 3vw;
  }
  #addEx {
    margin-top: 2.5vh;
    min-height: 30vh;
  }
  #addEx li {
    border: 3px solid #734a40;
    padding: 2.5vh;
    font-size: 2vw;
  }
  .delete {
    margin-bottom: 1vw;
    font-size: 3vw;
    font-weight: bolder;
  }
  .create {
    margin-top: 2.5vh;
    padding: 2.5vh 3vh;
  }
  #save-list {
    margin-top: 0.5vh;
    margin-bottom: 2.5vh;
  }
  /* your_list.html */
  .Twoje {
    min-height: 80vh;
  }
  .Twoje h2 {
    font-size: 3vw;
    margin-top: 10vh;
    margin-bottom: 0;
  }
  .Twoje a {
    margin-left: 30%;
    align-items: center;
    margin-bottom: 50vh;
    padding: 2.5vh;
  }
  .twoje-listy {
    width: 95%;
    display: block;
  }
  .twoje-listy h3 {
    font-size: 3vw;
  }
  .twoje-listy p {
    font-size: 3vw;
  }
  .twoje-listy li {
    height: auto;
    min-height: 15vh;
    max-height: 20vh;
    padding: 2.5vh;
    width: 100%;
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 5vh;
    border: 5px solid #734a40;
  }
  .Widok_list {
    height: 50vh;
    margin-bottom: 5vh;
    padding: 10px;
  }
  #exercise-list {
    margin-top: 15vh;
  }
  #exercise-list li {
    font-size: 2vw;
    padding: 2.5vh;
    border-radius: 50px;
    margin-left: 20vh;
    border: 3px solid #734a40;
  }
}

@media screen and (max-width: 1100px) {
  body {
    transform: scale(0.8);
  }
}

/* Media query dla tabletów */

@media only screen and (max-width: 1024px) {
  body {
    transform: scale(0.7);
    transform-origin: top left;
    left: 0;
    margin: 0;
    overflow-x: hidden;
    height: auto;
    min-height: 100%;
  }
}

@media screen and (max-width: 896px) {
  body {
    transform: scale(0.6);
  }
}

/* Media query dla smartfonów w orientacji poziomej */

@media only screen and (max-width: 768px) and (orientation: landscape) {
  body {
    transform: scale(0.5);
    transform-origin: top left;
    left: 0;
    margin: 0;
    overflow-x: hidden;
    height: auto;
    min-height: 100%;
  }
}

@media screen and (max-width: 750px) and (min-width: 725px) {
  body {
    transform: scale(0.48);
  }
}

@media screen and (max-width: 725px) and (min-width: 700px) {
  body {
    transform: scale(0.45);
  }
}

@media screen and (max-width: 700px) and (min-width: 675px) {
  body {
    transform: scale(0.42);
  }
}

@media screen and (max-width: 675px) and (min-width: 650px) {
  body {
    transform: scale(0.39);
  }
}

@media screen and (max-width: 650px) and (min-width: 625px) {
  body {
    transform: scale(0.36);
  }
}

@media screen and (max-width: 625px) and (min-width: 600px) {
  body {
    transform: scale(0.33);
  }
}

/* Media query dla smartfonów w orientacji pionowej*/

@media only screen and (max-width: 600px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    transform: scale(0.3);
    transform-origin: top left;
    left: 0;
    margin: 0;
    overflow-x: hidden;
    height: auto;
    min-height: 100%;
  }
  main {
    width: 90%;
    height: auto;
    margin-left: 5%;
  }
  header {
    font-size: 3vw;
    height: 10%;
    width: 95%;
    left: 2.5%;
    position: fixed;
    top: 0;
  }
  .index header {
    height: 30vh;
  }
  h1 {
    font-size: 25vw;
  }
  #o_nas {
    font-size: 15vw;
  }
  h2 {
    font-size: 20vw;
    text-align: center;
    margin-bottom: 5vw;
    width: 100%;
    margin-left: -2.5vw;
  }
  p {
    font-size: 15vw;
    width: 90%;
    margin-left: 5%;
    margin-bottom: 3.5vw;
    text-align: center;
  }
  .menu {
    position: fixed;
    display: none;
    margin-top: 7%;
    right: 5%;
    width: 60%;
    text-align: center;
    background-color: white;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  .menu.active {
    display: block;
  }
  .menu ul {
    display: block;
  }
  .menu ul li {
    font-size: 20vw;
    font-weight: bold;
    width: 100%;
  }
  .hamburger {
    display: block;
    width: 10%;
    height: 50%;
    position: absolute;
    top: 35%;
    right: 7.5%;
    cursor: pointer;
    z-index: 1000;
  }
  .line {
    width: 100%;
    height: 10%;
    background-color: #734a40;
    margin: 10% 0;
    transition: all 0.5s ease;
  }
  .clicked .line:nth-child(1) {
    transform: translateY(22.5px) rotate(45deg);
  }
  .clicked .line:nth-child(2) {
    opacity: 0;
  }
  .clicked .line:nth-child(3) {
    transform: translateY(-22.5px) rotate(-45deg);
  }
  .hero {
    margin-top: 7.5%;
    margin-bottom: 5%;
    height: 300vh;
    width: auto;
    background-image: url("Graphics/Trainly_mobile_hero.png");
    background-position: center right;
    background-size: cover;
  }
  .logo {
    width: auto;
    height: 90%;
    margin-left: 5%;
  }
  .photos {
    margin-top: 15%;
    flex-direction: column;
  }
  .photo {
    margin-bottom: 45%;
  }
  .flip-card-front img {
    border: 10px solid #734a40;
    width: 50%;
    padding: 5%;
    border-radius: 25px;
    background-color: #d9b5a0;
  }
  .flip-card {
    width: 100%;
    margin-bottom: 10%;
  }
  .flip-card h2 {
    font-size: 25vw;
  }
  .flip-card p {
    font-size: 14vw;
  }
  #how_to_start {
    margin-top: 10%;
  }
  .button {
    margin-top: 7.5%;
    font-size: 12.5vw;
    width: 75%;
  }
  footer {
    position: fixed;
    top: 100%;
    width: 95%;
    font-size: 4vw;
    margin-left: 2.5%;
    height: 7.5%;
  }
  .index footer {
    height: 15vh;
  }
  footer .logo {
    margin-left: 5%;
    height: 25vw;
    width: auto;
  }
  .icon {
    height: auto;
    width: 25vw;
    margin: 0;
  }
  /* Logowanie */
  .log_mob {
    height: auto;
  }
  .Logowanie {
    margin-top: 75vw;
    width: 90%;
    margin-left: 5%;
  }
  .Logowanie h1 {
    font-size: 20vw;
    margin-bottom: 7.5%;
  }
  .Logowanie input {
    width: 75%;
    font-size: 15vw;
    padding: 5vw;
    border: 5px solid #734a40;
    border-radius: 50px;
  }
  #login {
    margin-top: 20vh;
  }
  .Logowanie input[type="submit"] {
    width: 50%;
    font-size: 15vw;
    padding: 7.5vw;
    font-family: "Michroma", sans-serif;
    font-weight: bolder;
    color: #d9b5a0;
    border-radius: 100px;
    margin-top: 5%;
  }
  .Logowanie h3 {
    font-size: 15vw;
    margin-top: 50%;
    margin-bottom: 5%;
  }
  #loginError {
    font-weight: bolder;
    font-size: 10vw;
  }
  #register {
    font-size: 10vw;
    border-radius: 100px;
    padding: 7.5vw;
  }
  /* Rejestracja */
  .reg_mob {
    height: auto;
  }
  .Rejestracja {
    margin-top: 50vw;
    width: 100%;
  }
  .Rejestracja h1 {
    font-size: 20vw;
    margin-bottom: 7.5%;
  }
  .Rejestracja input {
    width: 75%;
    font-size: 15vw;
    padding: 5vw;
    border: 5px solid #734a40;
    border-radius: 50px;
  }
  .gender-selection {
    font-size: 15vw;
  }
  .Rejestracja label:before {
    width: 5vw;
    height: 5vw;
    border: 5px solid #734a40;
    margin-right: 2vw;
  }
  .Rejestracja input[type="submit"] {
    width: 50%;
    font-size: 15vw;
    padding: 7.5vw;
    font-family: "Michroma", sans-serif;
    font-weight: bolder;
    color: #d9b5a0;
    border-radius: 100px;
    margin-top: 10%;
  }
  .Rejestracja h3 {
    font-size: 15vw;
    margin-top: 50%;
    margin-bottom: 5%;
  }
  .modal {
    min-height: 150%;
  }
  .modal-content {
    margin: 10%;
    margin-top: 100%;
    padding: 5vw;
    border: 5px solid #734a40;
    width: 80%;
    text-align: center;
    border-radius: 50px;
  }
  .modal-content p {
    font-size: 25vw;
  }
  .close {
    font-size: 15vw;
    font-weight: bolder;
  }
  /* Contact.html */
  .con_mob {
    height: auto;
  }
  .Formularz_kontaktowy {
    width: 90%;
    margin: 5%;
    margin-top: 50vw;
  }
  .Formularz_kontaktowy h1 {
    font-size: 15vw;
    margin-bottom: 7.5%;
  }
  .Formularz_kontaktowy input,
  .Formularz_kontaktowy textarea {
    width: 90%;
    padding: 5vw;
    margin-bottom: 20px;
    border: 5px solid #734a40;
    border-radius: 25px;
    font-size: 15vw;
    resize: none;
  }
  .Formularz_kontaktowy textarea {
    height: 100vh;
  }
  .plik {
    font-size: 7.5vw;
  }
  .Formularz_kontaktowy input[type="file"] {
    width: 90%;
    margin-top: 5vw;
  }
  .Formularz_kontaktowy input[type="submit"] {
    width: 40%;
    border-radius: 100px;
    padding: 5vw;
    font-size: 10vw;
  }
  .success_notification {
    top: 75vw;
    left: 50%;
    width: 75%;
    border-radius: 25px;
    border: 3px solid #bf907e;
    padding: 5vw;
    font-size: 15vw;
  }
  /* Settings */
  .set_mob {
    height: auto;
  }
  .settings {
    width: 90%;
    margin: 5%;
    margin-top: 50vw;
  }
  .settings h2 {
    font-size: 25vw;
    margin-top: 50vw;
    margin-bottom: 5%;
  }
  .settings input {
    width: 90%;
    padding: 5vw;
    margin-bottom: 20vw;
    border: 5px solid #734a40;
    border-radius: 25px;
    font-size: 15vw;
    resize: none;
  }
  .settings input[type="submit"] {
    width: 75%;
    font-size: 15vw;
    padding: 7.5vw;
    font-family: "Michroma", sans-serif;
    font-weight: bolder;
    color: #d9b5a0;
    border-radius: 100px;
    margin-top: 10%;
  }
  label {
    font-size: 10vw;
  }
  #password_error {
    font-size: 10vw;
  }
  /*-------------------------------*/
  /* Twój panel */
  #welcome {
    margin-left: 10px;
  }
  .user_mob {
    height: auto;
    width: 80%;
    margin-left: 15%;
  }
  .content {
    width: 100%;
    margin-top: 5%;
    margin-left: 0;
    height: auto;
    min-height: 575vw;
  }
  .sidebar {
    width: 10%;
    height: auto;
    max-height: 115vh;
    margin-top: 60%;
    margin-left: 2.5%;
    z-index: 1;
  }
  .sidebar ul {
    padding: 0;
    margin: 0 auto;
    list-style-type: none;
  }
  .sidebar ul li {
    padding: 5% 2.5%;
  }
  #panel {
    display: block;
  }
  .sidebar img {
    margin-top: 40%;
    width: 30vw;
    height: auto;
  }
  .userinfo {
    margin-top: 40vw;
    background-image: url("Graphics/Trainly_user_mobile_hero.png");
    background-size: contain;
    height: 450vw;
    background-position: center top;
    border-radius: 25px;
  }
  hr {
    margin-left: 1vw;
  }
  .userinfo h2 {
    font-size: 15vw;
  }
  .userinfo p {
    font-size: 10vw;
  }
  #clock,
  #currentDate {
    font-size: 10vw;
  }
  #user_button {
    width: 75%;
    font-size: 15vw;
    margin-top: 10vh;
  }
  /* Kalendarz */
  #cals {
    display: block;
    margin-top: 75vw;
    font-size: 25vw;
  }
  .calendar {
    margin-top: 100vw;
    width: 100%;
  }
  /* Month header */
  .month {
    padding: 5% 5%;
    width: 100%;
  }
  .month h2 {
    font-size: 20vw;
    text-align: center;
    margin-left: 2.5vh;
  }
  /* Weekdays (Mon-Sun) */
  .weekdays {
    margin: 0;
    padding: 5px 0;
  }
  .weekdays li {
    width: 1vw;
    font-weight: bolder;
    padding-left: 1vh;
    font-size: 5vh;
  }
  /* Days (1-31) */
  .days {
    padding: 10px 0;
    padding-left: 5vh;
  }
  .days li {
    width: 6vw;
    margin-bottom: 5vw;
    font-size: 4vh;
    font-weight: bolder;
    padding-left: 1vh;
  }
  #startTraining {
    padding: 5vw;
    font-size: 15vw;
    font-weight: 700;
    margin-top: 10vw;
    border-radius: 100px;
    width: auto;
    min-width: 65%;
  }
  #planTraining {
    padding: 5vw;
    font-size: 15vw;
    font-weight: 700;
    margin-top: 10vw;
    border-radius: 100px;
    width: auto;
    min-width: 65%;
  }
  .last-clicked {
    color: #734a40 !important;
    box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 25%;
  }
  #planModal {
    margin-top: -45%;
  }
  #planModal h3 {
    font-size: 15vw;
    margin-bottom: 2.5vh;
  }
  #trainingDescriptionInput {
    padding: 10px;
    margin-bottom: 20px;
    border: 5px solid #bf907e;
    border-radius: 50px;
    font-size: 15vw;
  }
  #trainingTimeInput {
    width: 25%;
    padding: 8px;
    border: 5px solid #bf907e;
    border-radius: 50px;
    font-size: 10vw;
    margin-bottom: 2.5%;
  }
  #plannedInfo {
    font-size: 10vw;
    margin-top: 2.5vh;
    margin-bottom: 2.5vh;
  }
  #view-report-btn {
    padding: 5vw;
    font-size: 10vw;
    margin-top: 10vw;
    font-weight: bolder;
  }
  .mobile_cal {
    display: block;
    margin-top: 150vw;
  }
  /* Powiadomienia */
  .notification {
    border: 5px solid #bf907e;
    color: #734a40;
    border-radius: 50px;
    padding: 5vw;
    margin-bottom: 5vw;
    width: 75%;
    margin-left: 12.5%;
  }
  #notes_h2 {
    margin-top: 75vw;
    font-size: 20vw;
    margin-bottom: 85vw;
  }
  .notification_visible {
    max-height: 200vw;
    overflow-y: auto;
    font-size: 10vw;
  }
  .mobile_not {
    display: block;
    margin-top: 150vw;
  }
  #overlay_notification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
  }
  #notification-modal {
    padding: 5vw;
    border-radius: 25px;
    width: 80%;
    max-height: 80%;
  }
  #notification-modal h2 {
    font-size: 20vw;
    margin-bottom: 5%;
  }
  #notification-modal p {
    font-size: 15vw;
  }
  .close-btn {
    font-size: 25vw;
    top: 0;
    right: 10px;
  }
  /* Statystyki */
  #stats {
    font-size: 25vw;
    margin-top: 75vw;
    margin-bottom: 100vw;
  }
  .statystyki h3 {
    font-size: 9vw;
  }
  .statistics {
    width: 90%;
    margin-left: 5%;
  }
  .training {
    font-size: 5vw;
    padding-top: 5vw;
    padding-bottom: 5vw;
    padding-right: 5vw;
  }
  .time {
    font-size: 5vw;
    padding-top: 5vw;
    padding-bottom: 5vw;
    padding-right: 5vw;
  }
  .calories {
    font-size: 5vw;
    padding-top: 5vw;
    padding-bottom: 5vw;
    padding-right: 5vw;
  }
  .intensitivity {
    font-size: 5vw;
    padding-top: 5vw;
    padding-bottom: 5vw;
    padding-right: 5vw;
  }
  .mobile_stats {
    display: block;
    margin-top: 200vw;
  }
  /* Opcje listy */
  #lists {
    margin-top: 75vw;
    font-size: 25vw;
  }
  .opcje_listy {
    border: 5px solid #734a40;
    border-radius: 50px;
    width: 75%;
    height: auto;
    margin-left: 12.5%;
    display: flex;
  }
  .opcje_listy .header {
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
    width: 100%;
    height: 10%;
  }
  .opcje_listy h2 {
    font-size: 15vw;
  }
  .your_list {
    min-height: 130vw;
  }
  .create_list {
    min-height: 130vw;
  }
  .our_list {
    min-height: 130vw;
  }
  /* Our_list.html */
  #our-lists {
    display: block;
    text-align: center;
    font-size: 20vw;
    margin-top: 75vw;
    margin-bottom: 25vw;
  }
  .nasze-listy {
    width: 100%;
    display: block;
    max-height: 190vh;
    overflow-y: auto;
    margin-bottom: 10vh;
  }
  .nasze-listy h3 {
    font-size: 20vw;
  }
  .nasze-listy p {
    font-size: 15vw;
  }
  .nasze-listy li {
    align-items: center;
    justify-content: center;
    padding: 3vh;
    width: 80%;
    min-height: 25vh;
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 10vh;
    border: 5px solid #734a40;
  }
  .badge {
    padding: 5vw;
    font-size: 15vw;
  }
  #our_addEx li {
    border: 3px solid #734a40;
    width: 90%;
    left: 5%;
    padding: 5vw;
    font-size: 15vw;
    transition: 0.2s;
    border-radius: 50px;
  }
  #myModal .create {
    padding: 5vw;
    font-size: 8vw;
  }
  .addBtn {
    font-size: 10vw;
    padding: 5vw;
    margin-top: 2.5vw;
    border-radius: 50px;
    width: auto;
  }
  #myInput {
    font-size: 12.5vw;
    padding: 2.5vw;
    margin-top: 2.5vw;
    margin-left: 0;
    width: auto;
  }
  #myModal .close {
    font-size: 20vw;
  }
  #myModal .close:hover {
    color: #0d0907;
  }
  .closing {
    font-size: 20vw;
    font-weight: bolder;
    align-items: center;
  }
  #our_name {
    font-size: 12.5vw;
    margin-top: 15vh;
    margin-bottom: 5vh;
  }
  #listNameInput {
    font-size: 12.5vw;
    border-radius: 50px;
    padding: 5vw;
    min-width: 75%;
  }
  /* create_list.html */
  #create-list {
    margin-top: 20vh;
  }
  #create-list h2 {
    font-size: 15vw;
  }
  #addEx {
    margin-top: 10vh;
    min-height: 200vh;
  }
  #addEx li {
    border: 3px solid #734a40;
    width: 90%;
    left: 5%;
    padding: 5vw;
    font-size: 10vw;
    border-radius: 50px;
  }
  .delete {
    margin-bottom: 1vw;
    font-size: 20vw;
    font-weight: bolder;
  }
  .create {
    margin-top: 25vh;
    padding: 7.5vw 10vw;
  }
  .create h2 {
    font-size: 20vw;
  }
  #save-list {
    margin-top: 2.5vh;
    margin-bottom: 2.5vh;
  }
  /* your_list.html */
  .Twoje {
    min-height: 225vh;
  }
  .Twoje h2 {
    font-size: 20vw;
    margin-top: 35vh;
    margin-bottom: 15vh;
  }
  .Twoje a {
    margin-left: 60vw;
    align-items: center;
    margin-bottom: 15vh;
    padding: 5vw;
  }
  .twoje-listy {
    width: 95%;
    display: block;
  }
  .twoje-listy h3 {
    font-size: 10vw;
  }
  .twoje-listy p {
    font-size: 10vw;
  }
  .twoje-listy li {
    padding: 10vw;
    width: 100%;
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 5vh;
    border: 5px solid #734a40;
  }
  .Widok_list {
    height: 125vh;
    margin-bottom: 15vh;
    padding: 10px;
  }
  #exercise-list {
    margin-top: 15vh;
  }
  #exercise-list li {
    font-size: 10vw;
    padding: 5vw;
    border-radius: 50px;
    margin-left: 20vw;
    border: 3px solid #734a40;
  }
  /* Training.html */
  #train {
    font-size: 20vw;
    margin-top: 15vh;
  }
  .go-on-fire {
    background-image: url("Graphics/Go_on_fire.png");
    min-height: 65vh;
  }
  #exercise-list-training {
    margin-top: 75px;
  }
  #exercise-list-training li {
    padding: 10px;
    margin-bottom: 15px;
    font-size: 10vw;
  }
  #train_history {
    margin-bottom: 75px;
    font-size: 10vw;
  }
  /*TRAIN.html*/
  #twoj_trening {
    height: auto;
    width: 95%;
    margin-top: 20vh;
    margin-left: 2.5%;
  }
  .timer {
    font-size: 10vw;
    min-width: 10vw;
    display: block;
  }
  #end_training {
    margin-bottom: 50px;
    padding: 15px;
  }
  #mobile_end_training {
    display: block;
    margin-bottom: 25px;
}
  #trenuj {
    text-align: center;
    font-size: 15vw;
    margin-left: 0;
    margin-top: 10vh;
  }
  #footer_train {
    display: none;
  }
  #exercise-list li {
    padding: 0;
    margin-bottom: 5px;
  }
  .collapsible {
    padding: 5px;
    font-size: 12.5vw;
    font-weight: bolder;
    border-radius: 45px;
  }
  iframe {
    width: 35%;
    margin-left: 32.5%;
  }
  .Trening {
    display: block;
    margin-left: 2.5%;
    margin-top: 5vh;
  }
  .Trening input {
    width: 10%;
    margin-left: 15px;
    margin-right: 25%;
    font-size: 10vw;
  }
  .Trening label {
    font-size: 10vw;
    margin-left: 10%;
  }
  .myCheck {
    width: 10vh;
    height: 10vh;
  }
  .exercise_details {
    width: 100%;
    max-width: 100%;
  }
  .exercise_details p {
    font-size: 12.5vw;
    margin-top: 50px;
  }
  #addExerciseForm {
    width: 90%;
    margin-left: 5%;
    border-radius: 100px;
    margin-bottom: 50px;
  }
  #addExerciseForm input,
  textarea {
    width: 75%;
    font-size: 10vw;
  }
  #addExerciseForm textarea {
    min-height: 150px;
  }
  #addExerciseForm input[type="button"] {
    width: 40%;
    border-radius: 25px;
    font-size: 10vw;
  }
  #confirmEndTraining {
    font-weight: bolder;
    font-size: 15vw;
  }
  #anuluj {
    font-weight: bolder;
    font-size: 15vw;
  }
}
