body {
  background-image: url('https://files.catbox.moe/62lin2.gif');
  color: black;
  font-family: Verdana;
}

/* KEEP YOUR BOX STYLE */
.box2 {
  border: 5px solid magenta;
  border-radius: 15px;
  padding: 10px;
}

/* TOP ROW */
.container {
  width: 800px;
  display: flex;
}

/* NEW LAYOUT */
.main-layout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 800px;
}

/* LEFT SIDE */
.left-main {
  width: 650px;
}

/* RIGHT SIDE STACKED */
.right-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 330px;
}

/* IMAGE SWAP (unchanged) */
.image-swap {
  width: 250px;
  height: 40px;
  background-image: url("https://i.imgur.com/0TQZma0.gif");
  background-size: cover;
  transition: background-image 0.5s ease;
}

.image-swap:hover {
  background-image: url("https://files.catbox.moe/w1w22i.gif");
}

.image-swap2 {
  width: 250px;
  height: 40px;
  background-image: url("https://files.catbox.moe/e2o465.gif");
  background-size: cover;
  transition: background-image 0.5s ease;
}

.image-swap2:hover {
  background-image: url("https://files.catbox.moe/uki0fb.gif");
}

.image-swap3 {
  width: 150px;
  height: 150px;
  background-image: url("https://files.catbox.moe/p0wwrs.gif");
  background-size: cover;
  transition: background-image 0.5s ease;
}

.image-swap3:hover {
  width: 150px;
  height: 150px;
  background-image: url("https://files.catbox.moe/u4yae2.gif");
  
}
.pet-poll-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: nowrap;
}

.pet-poll-row iframe {
  flex-shrink: 0;
}

.poll-box {
  flex-shrink: 0;
  width: 180px;
}

/* makes sure nothing inside breaks layout */
.poll-box * {
  float: none !important;
}
