html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* nav bar */
.navUlTop {
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  background-color: #000000;
  display: flex;
  justify-content: center;
}
.navUlTop li a {
  display: block;
  color: white;
  text-align: center;
  font-family: "Verdana", "Arial", sans-serif;
  font-size: 30px;
  font-weight: 900;
  padding: 14px 16px;
  text-decoration: none;
  width: 200px;
}

.navUl {
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  border-style: none none solid none;
  width: 100%;
}
.navUl li a {
  color: black;
  text-align: center;
  font-family: "Verdana", "Arial", sans-serif;
  font-size: 14px;
  padding: 14px 16px;
  text-decoration: none;
  width: 200px;
}
.navUl li a:hover {
  color: #ff0000;
}
.navCenter {
  display: flex;
  margin: 0 auto;
}
.navCenter li a {
  display: block;
}
.pushRight {
  float: right;
  right: 15px;
  position: absolute;
  margin-top: 8px;
}
.pushRight button {
  border: none;
  cursor: pointer;
  background-color: #ffffff;
}
.pushRight button:hover {
  color: #ff0000;
}

/* main stuff */
.container {
  margin: 0;
  min-height: 100vh;
  padding-bottom: 8px;
  background-color: #fdf2f2;
}

.hidden {
  display: none !important;
}

/* text */
h1 {
  text-align: center;
  font-family: "Verdana", "Arial", sans-serif;
  font-weight: 900;
  font-size: 50px;
}
h2 {
  text-align: center;
  font-family: "Verdana", "Arial", sans-serif;
  font-weight: 600;
}
h3 {
  text-align: center;
  font-family: "Verdana", "Arial", sans-serif;
}
p {
  text-align: center;
  font-family: "Verdana", "Arial", sans-serif;
  font-size: 14px;
}
form {
  text-align: center;
  font-family: "Verdana", "Arial", sans-serif;
  font-size: 14px;
}
ul {
  padding: 0;
}
ul li {
  font-family: "Verdana", "Arial", sans-serif;
  font-size: 14px;
}
ol {
  padding: 0;
}
ol li {
  font-family: "Verdana", "Arial", sans-serif;
  font-size: 14px;
}
button {
  font-family: "Verdana", "Arial", sans-serif;
  font-size: 14px;
}

/* lists */
.biasList {
  background-color: #fdcece;
  padding: 15px;
  border-radius: 10px;
  max-width: 450px;
  margin: 20px auto;
  box-shadow: 0 5px 6px rgb(221, 85, 85, 0.3);
}
#biasUl {
  list-style: none;
}
#biasUl li {
  counter-increment: bias-counter;
  position: relative;
  display: flex;
  justify-content: center;
}
#biasUl li::before {
  content: "🍲";
  position: relative;
  padding-right: 1em;
  padding-left: 0;
}

#potsModalBody ul {
  list-style: none;
}
#potsModalBody ul li {
  position: relative;
  display: flex;
  justify-content: center;
}
#potsModalBody ul li::before {
  content: "🍲";
  position: relative;
  padding-right: 1em;
  padding-left: 0;
}

.biasPageNRol {
  list-style: none;
  counter-reset: bias-counter;
}
.biasPageNRol li {
  counter-increment: bias-counter;
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 5px;
}
.biasPageNRol li::before {
  content: counter(bias-counter) "🍲";
  position: relative;
  padding-right: 1em;
  font-weight: bold;
  color: #d16915;
}

/* buttons */
.button {
  background-color: #fbcbcb;
  border: none;
  border-radius: 12px;
  color: #924607;
  padding: 1px 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 5px 6px rgb(251, 203, 203, 0.4);
}
.button:hover {
  background-color: #f5adad;
  box-shadow: 0 7px 10px rgb(245, 173, 173, 0.6);
}

.button2 {
  background: #f0f0f0;
  border: none;
  padding: 2px 6px;
  margin-left: 4px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: background 0.2s ease, transform 0.15s ease;
}
.button2:hover {
  background: #d0d0ff;
  transform: scale(1.1);
}

.button3 {
  background: #ff0000;
  border: none;
  padding: 6px 12px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 6px;
  color: white;
  transition: background 0.2s ease, transform 0.15s ease;
}
.button3:hover {
  background: #ff7575;
}

/* #themeSelect {
  border-radius: 10px;
  background-color: white;
  padding: 5px;
  box-shadow: 0 5px 6px rgb(133, 133, 133, 0.3);
} */

/* modal */
.modal {
  position: fixed;
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6); /* dark translucent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* make sure it’s on top */
}
.modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.2);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 18px;
  cursor: pointer;
  background: #f0f0f0;
  border: none;
  padding: 2px 6px;
  margin-left: 4px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: background 0.2s ease, transform 0.15s ease;
}
.modal span:hover {
  background: #d0d0ff;
  transform: scale(1.1);
  font-weight: bold;
}
.modal textarea {
  width: 90%;
  margin-top: 6px;
  padding: 8px;
  font-size: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  resize: vertical;
}

/* slider */
#mainSlider ul {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 630px;
}
.slideWrapper {
  max-width: 100% !important;
  min-width: 0 !important;
  overflow: hidden;
  user-select: none;
}
.slide {
  text-align: center;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
  max-width: 100% !important;
  box-sizing: border-box;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffc2c2;
  cursor: pointer;
}
.dot.active {
  background: #ff0000;
}

.overlay {
  position: absolute;
  bottom: 25%;
  top: 25%;
  left: 33%;
  right: 33%;

  background: rgb(251, 203, 203, 0.85);
  padding: 10px 24px;
  border-radius: 10px;

  max-width: 34%;
}
