/* General Styles */
html,
body {
  height: 100%;
  width: 100%;
  background-color: #dedede;
  color: black;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  transition: background-color 0.5s ease, color 0.5s ease;
}

header {
  width: 100%;
  height: 100px;
  padding: 10px 0;
  background-color: #c8c8c8;
  position: fixed;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.5s ease, color 0.5s ease;
}

#darkModeToggle {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.divider {
  width: 100%;
  height: 2px;
  background-color: #7d7d7d;
  position: fixed;
  top: 100px;
  z-index: 9;
}

main {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

main .content {
  width: 100%;
  max-width: 800px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.5s ease, color 0.5s ease;
}

.darkLightText {
  color: #646464;
}



/* Common & Simple Styles */
.orbitron {
  font-family: 'Orbitron', sans-serif;
}

.hidden {
  display: none;
}

.center {
  align-self: center;
  text-align: center;
  align-items: center;
  vertical-align: middle;
}

.centerForcefully {
  /* Use only when .center doesn't work, avoid frequent use to prevent issues. */
  display: flex;
  align-items: center;
  justify-content: center;
}

.rounded {
  border-radius: 20px;
}

.scrollable {
  overflow-y: auto;
}


/* Dark Mode Styles */
html.dark-mode,
body.dark-mode {
  background-color: #1e1e1e;
  color: white;
}

header.dark-mode {
  background-color: #282828;
  color: white;
}

main .content.dark-mode {
  background-color: #323232;
  color: white;
}

.divider.dark-mode {
  background-color: #afafaf;
}





/* Add your styles here */
.button-large {
  width: 90%;
  height: auto;
  padding: 10px;
  font-size: 20px;
  background-color: #4baf4b;
  cursor: pointer;
}

.button-large:hover {
  background-color: #3f9e3f;
}

.button-large:active {
  background-color: #2f7f2f;
}

.button-large:focus {
  background-color: #4baf4b;
}

.button-large:after {
  background-color: #2f7f2f;
}

#clickBtn {
  position: relative;
  overflow: hidden;
  width: 250px;
  height: 250px;
  background-color: red;
  border-radius: 50%;
  border-color: #646464;
  border-style: solid;
  border-width: 10px;
  font-size: 20px;
  color: black;
  transition: border-width 0.075s ease;
}

#clickBtn:hover {
  cursor: pointer;
}

#clickBtn:active {
  border-width: 20px;
}

#userCount {
  font-size: 20px;
}

#serverVersion {
  font-size: 20px;
}

.hoverHolder1 {
  position: fixed;
  left: 10px;
  bottom: 10px;
  background-color: #7d7d7d;
  padding: 3px;
  border-radius: 10px;
  border: 2px solid #646464;
}

.hoverHolder2 {
  position: fixed;
  right: 10px;
  bottom: 10px;
  padding: 3px;
  border-radius: 10px;
  background-color: #7d7d7d;
  border: 2px solid #646464;
}