body {
  background-color: #000022;
}

@font-face {
  font-family: "Wingding";
  src: url("/wingding.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

#volume-slider-parent {
    position: fixed;     /* FIXED so it sticks to viewport */
    bottom: 20px;        /* distance from bottom */
    right: 20px;         /* distance from right */
    width: 150px;        /* container width */
    padding: 8px;
    box-sizing: border-box;
    z-index: 1000;
  }

  /* Slider fills the container */
  #volume-slider {
    width: 100%;
    display: block;
    margin: 0;
  }
  
.container {
  padding: 15px;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 130, 0.2) 0%,  /* top: faint dark blue */
    rgba(75, 0, 255, 0.2) 100% /* bottom: slightly lighter dark blue */
  );
  border: 1px solid #9b59b6; /* nice purple outline */
  box-sizing: border-box;
  display: inline-block;
  flex-direction: column;      /* stack children vertically */
}

.CenterContentstitleimg {
  margin: 20px;
  padding: 15px;
  display: flex;
  justify-content: center; /* Centers horizontally (main axis) */
  align-items: center;     /* Centers vertically (cross axis) */
}

.containerCenterContents {
  padding: 15px;
  margin: 20px;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 130, 0.2) 0%,
    rgba(75, 0, 255, 0.2) 100%
  );
  border: 1px solid #9b59b6;
  box-sizing: border-box;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;      /* stack children vertically */
}

.text {
  font-family: "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", Arial, sans-serif;
  color: #ffffff;
}
.darktext {
  font-family: "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", Arial, sans-serif;
  color: #333333;
}
.wingding {
  font-family: "Wingding";
  color: #222222;
}

.button {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #000;
  background-color: #e6e6e6;
  border: 1px solid #999;
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background-color: #dcdcdc;
}

.button:active {
  background-color: #cfcfcf;
}

.TitleImg {
  width: 35vw;   /* sets width */
  height: auto;   /* keeps aspect ratio */
}

.CenterContents {
  display: flex;
  justify-content: center; /* Centers horizontally (main axis) */
  align-items: center;     /* Centers vertically (cross axis) */
  height: 10vh; /* Example: set a height for visibility */
}

.commentbox {
  display: block;
  min-width: 90vw;
  min-height: 50vh;
}

/* Shared styles for all three buttons */
.buttonContainerStyle {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(
    180deg,
    rgba(75, 0, 255, 0.3) 0%,  /* lighter top */
    rgba(0, 0, 205, 0.3) 100%  /* lighter bottom */
  );
  border: 1px solid #9b59b6; /* same purple outline */
  color: #ffffff;
  font-family: "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", Arial, sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

/* Optional hover effect */
.buttonContainerStyle:hover {
  background: linear-gradient(
    180deg,
    rgba(75, 0, 255, 0.5) 0%, 
    rgba(0, 0, 205, 0.5) 100%
  );
}

/* Specific corner rounding for each button */
.LeftButton {
  border-radius: 12px 0 0 12px;  /* round left corners only */
}

.MiddleButton {
  border-radius: 0;               /* no round corners */
}

.RightButton {
  border-radius: 0 12px 12px 0;  /* round right corners only */
}

