html {
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
}

.btn {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.3rem;
  /* margin-right: 40px; */
  border-radius: 3px;
}

.file-block {
  display: flex;
  border: 1px black solid;
  border-radius: 10px;
  cursor: pointer;
  padding: 0 20px;
  flex-direction: column;
  background: #f3eaea;
}

.file-container {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.open-btn {
  background-color: #4285f4;
}

.edit-btn {
  background-color: #ffde03;
  color: #231e00;
}

input, select {
  font-size: 1rem;
}

input[type=file] {
  margin: 8px 0;
  padding: 15px 0;
}

input[type=text],input[type=password], select, textarea {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  touch-action: manipulation;
}

textarea {
  padding: 0 2px;
  resize: none;
  height: 50vh;
  font-size: 0.8rem;
}

.input-wrapper {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  font-size: 1.3rem;
}

.button-container {
  display: flex;
  gap: 40px;
}

.log-container {
  padding: 20px 20px 0 20px;
  font-size: 1.3rem;
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  font-family: monospace;
  list-style: none;
  padding: 20px 0;
  padding-left: 10px;
  border-bottom: 1px solid #ccc;
  font-size: 1rem;
  margin: 0;
  overflow-wrap: anywhere;
  display: flex;
  align-items: center;
}

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

  /* body {
    font-size: 16px;
  } */

  input {
    font-size: 1.2rem
  }

  textarea {
    font-size: 0.9rem;
  }

  ul li {
    justify-content: center;
    gap: 20px;
    padding-left: 0;

  }

  ul li span {
    flex: 1;
  }


  .button-container {
    padding-top: 40px;
    flex-direction: column;
  }
}

/* Switch Checkbox  */

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* // Switch Checkbox  */