body {
  margin: 0 10%;
  /* margin-top: 20px; */
  padding: 0px;
}

@media only screen and (max-width: 600px) {

  body {
    margin-left: 1%;
    margin-right: 1%;
    /* margin-top: 20px; */
    padding: 0px;
  }
}

/* Style the navbar */
.navbar {
  background: transparent;
  justify-content: center;
  /* Center content horizontally */
  display: flex;
  align-items: center;
  padding: 10px 20px;
  /* Adjust the padding as needed */
}

@media only screen and (max-width: 600px) {
  .navbar {
    background: transparent;
    justify-content: center;
    /* Center content horizontally */
    display: flex;
    align-items: center;
    /* padding: 1% 5%; */
    /* Adjust the padding as needed */
  }
}

/* Style the navigation links */
.nav-links {
  display: flex;
  align-items: center;
}

.navbar-button {
  text-decoration: none;
  color: black;
  font-size: 20px;
  transition: 0.3s;
}

/* Style the image in the middle */
.navbar img {
  display: block;
  margin: 0 auto;
  max-width: 70%;
  height: auto;
}

.text-centered {
  text-align: center;
}

.welcome {
  color: #244b90;
}

.test-select-button {
  width: 400px;
  /* Predvolená šírka pre väčšie obrazovky */
  padding: 15px 50px;
  border: 2px solid black;
  border-radius: 5px;
  background-color: white;
  color: black;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 10px;
  font-size: 20px;
}

/* @media only screen and (max-width: 600px) {
  .test-select-button {
    width: 90%;
    /* padding-left: 5%;
    padding-right: 5%; */

/* }
} */

.test-select-button:hover {
  background-color: #e5e5e5;
}

.bordered-container {
  width: fit-content;
  /* Set the width to fit the content */
  margin: 0 auto;
  /* Center the container horizontally */
  border: none;
  /* Replace #000 with the color you prefer */
  padding: 40px 70px;
  /* Add some padding inside the border */
  padding-top: 20px;
  border-radius: 5px;
  /* Optional: Add border-radius for rounded corners */
  margin-top: 15px;
}

.column-container {
  display: flex;
  margin: 1%;

  flex-direction: column;
  align-items: center;
  /* Centers the buttons horizontally */
  justify-content: space-between;
  /* Distributes buttons evenly vertically */
}

@media only screen and (max-width: 600px) {
  .column-container {
    width: 100%;

    display: flex;
    /* margin: 1%; */

    flex-direction: column;
    align-items: center;
    /* Centers the buttons horizontally */
    justify-content: space-between;
    /* Distributes buttons evenly vertically */
  }
}

.column-container-test {
  display: flex;
  flex-direction: column;
  align-items: left;
  /* Centers the buttons horizontally */
  justify-content: space-between;
  /* Distributes buttons evenly vertically */
}

.cancel-next-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.cancel-test-button:hover {
  background-color: red;
}

.wrong-answers {
  text-align: right;
  margin-right: 7px;
}

.next-question-button {
  order: 2;
}

.test-container {
  width: 900px;
  margin: 0 auto;
  /* Center the container horizontally */
  margin-top: 10px;
  border: none;
  border-radius: 20px;
  padding: 50px;
}

@media only screen and (max-width: 600px) {
  .test-container {
    margin-left: 50%;
    /* Adjust the width for smaller screens */
    /* padding: 20px; */
    /* Adjust padding for smaller screens */
  }
}

.question-select-button {
  background-color: white;
  text-align: left;
  margin-bottom: 11px;
  border: 1px solid grey;
  border-radius: 8px;
  font-size: 17px;
  transition: 0.2s;
}

.question-select-button:hover {
  background-color: #e1e1e1;
}

.question-select-button:disabled {
  color: black;
}

.progress-wrapper {
  display: flex;
  align-items: center;
}

.numbers-container {
  display: flex;
}

.start-number {
  margin: auto;
  /* Push to the left */
  padding: 2px;
  margin-right: 5px;
}

.end-number {
  margin: auto;
  padding: 6px;
  text-align: center;
}

.progress-container {
  flex-grow: 1;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  width: 0;
  height: 30px;
  background-color: #1082f2db;
  text-align: center;
  line-height: 30px;
  color: white;
}

.progress-percentage {
  position: absolute;
  top: 50%;
  left: 51%;
  transform: translate(-50%, -50%);
  color: black;
}