/************************* MAIN *********************************/

main {
  padding-left: 0.5%;
  padding-top: 20px;
  padding-right: 0.5%;
  padding-bottom: 5px;

  color: #f4f4f4;
  text-align: left;

  background: radial-gradient(rgb(135, 185, 255) 15%, white 70%);
}

/* 2-classes */
.randomCharacterGenerator {
  width: 100%;
  height: 50vh;
  min-height: 570px;
}

.generatorBox {
  padding-left: 5px;
  padding-top: 5px;
  /* padding-right: 20px; */
  padding-bottom: 5px;
  line-height: 1.8rem;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* ******************************************** 20251109 jc */
  max-width: 320px;
  height: 456px;
  /* ******************************************** */
  border-radius: 10px;
  background: rgba(0, 36, 143, 0.75);
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(25px);
}

.generatorBox > h3 {
  padding: 5px;
  font-size: 16px;
  text-align: center;
}

fieldset {
  padding-left: 16px;
}

.alphabetTitle,
.numberTitle,
.symbolTitle {
  padding: 5px;
  font-size: 1.1rem;
  text-align: left;
}

.outputBox {
  display: flex;
  align-items: center;
  /* ******************************************** 20251109 jc */
  width: 300px;
  height: 30px;
  /* ******************************************** */
  border-radius: 10px;
  background: rgba(0, 15, 110, 0.783);
}

.output {
  margin-left: 15px;
  /* width: 390px; */
  display: flex;
  justify-content: center;
}

.funcIcons {
  /* ******************************************** 20251109 jc */
  padding: 20px;
  width: 90px;
  /* ******************************************** */
  display: flex;
  justify-content: center;
  column-gap: 15px;
}

.copyChangeIcons {
  width: 18px;
  height: auto;
  cursor: pointer;
  transition: 0.5s;
}

.resultForm {
  /* ******************************************** 20251109 jc */
  width: 190px;
  height: 30px;
  /* ******************************************** */
  padding: 6px;
  font-size: 0.9rem;
  color: rgb(110, 148, 255);
  text-align: left;
  background: rgb(0, 13, 110);
}

.boxContainers {
  padding-left: 24px;
  padding-right: 24px;
  align-items: center;
  font-size: 1rem;
  /* font-weight: bold; */
}

.lengthInput {
  padding: 10px;
  padding-left: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #e3edf7;
}

.lengthCounter {
  padding-left: 2px;
  padding-right: 4px;
  font-size: 1.2rem;
  /* font-weight: bolder; */
}

.lengthTitle {
  display: flex;
  font-size: 1.1rem;
  /* font-weight: bold; */
  align-items: center;
  padding-left: 5px;
  margin-right: -10px;
}

.minusPlusFunctions {
  padding-right: 10px;
  display: flex;
  align-items: center;
}

.minusPlusPointer {
  padding: 0 5px;
  cursor: pointer;
}

.minusIcon,
.plusIcon {
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.slider {
  /* -webkit-appearance: none; */
  appearance: none;
  /* ******************************************** 20251109 jc */
  width: 90px;
  /* ******************************************** */
  height: 6px;
  border-radius: 5px;
  background-color: #e3edf7;
}

.slider::-webkit-slider-thumb {
  /* -webkit-appearance: none; */
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgb(9, 0, 134);
  border: 3px solid rgb(255, 255, 255);
  cursor: pointer;
}

.alphabetLabel,
.numberLabel,
.symbolLabel {
  font-size: 1rem;
  color: #e3edf7;
}

.alphabetLabel > span,
.numberLabel > span,
.symbolLabel > span {
  font-size: 01rem;
  font-style: italic;
}

.characterButton {
  padding-top: 15px;
  padding-left: 20px;
  padding-bottom: 10px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
}

.characterButton > button {
  width: 300px;
  height: 30px;

  color: #e3edf7;
  font-size: 16px;
  /* font-weight: bold; */

  background-color: rgba(0, 44, 110, 0.783);
  border-radius: 10px;
}

/******************* Media Queries Breakpoints *******************/
/* Media queries can be placed in both global CSS files and within  */
/* component-specific or "endpoint" CSS files, depending on the project's  */
/* organization and desired modularity. */

/* Styles for screens less than 576px (e.g., smartphones) */
@media screen and (width < 576px) {
  header {
    display: block;
  }
  .header {
    height: 0;
  }

  .csLogo {
    height: 100px;
  }

  .navigation {
    height: 20px;
    text-align: center;
  }

  .nav-top {
    height: 0;
  }

  .nav-bottom {
    word-spacing: 6px;
  }

  .nav-bottom a {
    font-size: 0.96rem;
  }

  .rights img {
    width: 200px;
    height: auto;
  }
}

/* Styles for screens wider than 576px -  768px (e.g., tablets) */
@media screen and (width >= 576px) and (width < 768px) {
  header {
    display: block;
  }

  .header {
    height: 0;
  }

  .csLogo {
    height: 100px;
    text-align: left;
  }

  .navigation {
    height: 20px;
    text-align: center;
  }

  .nav-top {
    height: 0;
  }

  .nav-bottom {
    word-spacing: 6px;
  }

  .rights img {
    width: 250px;
    height: auto;
  }
}
