* {
  user-select: none;
}

body,
input,
textarea,
button {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

body {
  position: relative;
  margin: 0;
  height: 100vh;
  overflow: hidden;
}

#cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
}

body {
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.tooltip {
  position: relative;
}

.tooltiptext {
  visibility: hidden;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 120%;
  opacity: 0;
  transition: opacity 0.3s;
  transform: translateX(-50%);
  left: 50%;
  font-size: 1.75vh;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.dark-mode-1 {
  background-color: rgb(8, 18, 18) !important;
  color: white;
}

.dark-mode-2 {
  background: none !important;
  background-color: rgb(0, 0, 0) !important;
  color: white;
}

.dark-mode-3 {
  color: rgb(149, 149, 149);
}

.dark-mode-4 {
  background-color: #141414 !important;
  color: white;
}

.dark-mode-5 {
  background-color: rgb(59 59 59 / 87%) !important;
}

.dark-mode-6 {
  background-color: rgba(21, 21, 21, 0.87) !important;
}

.dark-mode-7 {
  background-color: rgba(0, 0, 0, 0.9) !important;
}

#keybindModal {
  display: none;
  position: fixed;
  width: 70%;
  height: 95%;
  top: 50%;
  left: 37.5%;
  transform: translate(-50%, -50%);
  padding: 0 15px 15px 15px;
  background-color: rgba(200, 200, 200, 0.873);
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  border-radius: 4%;
}

.keybind-section-container {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.keybind-section {
  flex: 1;
}

.keybind-column {
  margin-right: 10px;
  padding: 5px;
}

h1 {
  font-size: 2vh;
  margin-bottom: 10px;
  margin: 0;
  padding: 0;
}

ul,
li {
  margin: 0;
  padding: 0;
  font-size: 1.60vh;
}

.keybind-column ul ul {
  margin-left: 10px;
}

.keybind-column ul ul li {
  margin-bottom: 1px;
  margin-top: 0;
  font-size: 1.7vh;
}

.keybind-column ul li {
  margin-top: 1vh;
  display: flex;
  justify-content: space-between;
}

.self {
  position: fixed;
  border: none;
  bottom: 0;
  width: 75.5%;
  height: 50%;
}

.opp {
  position: fixed;
  border: none;
  bottom: 50%;
  width: 75.5%;
  height: 50%;
  transform: scaleX(-1) scaleY(-1);
}

#stadium {
  position: fixed;
  bottom: 42%;
  left: 11%;
  width: 6%;
  height: 16%;
  display: flex;
  justify-content: center;
  border-radius: 15px;
}

#stadium img {
  max-width: 100%;
  max-height: 100%;
  height: fit-content;
  left: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .5);
  border-radius: 0.375rem;
  cursor: pointer;
}

.tab {
  position: absolute;
  border-radius: 10%;
  background-color: rgba(59, 173, 84, 0.708);
}

.outline {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.1);
}

.highlight {
  box-shadow: 0 0 0 4px rgb(122, 185, 133) !important;
  background-color: rgba(133, 197, 155, 0.3);
}

#selfResizer {
  position: fixed;
  left: 75.5%;
  bottom: 49%;
  cursor: row-resize;
  display: flex;
  width: 1vw;
  height: 2%;
  border-radius: 50%;
  transform: translateY(50%);
}

#oppResizer {
  position: fixed;
  left: 75.5%;
  bottom: 51%;
  cursor: row-resize;
  display: flex;
  width: 1vw;
  height: 2%;
  border-radius: 50%;
  transform: translateY(50%);
}

.self-color {
  background: linear-gradient(to bottom, rgba(90, 110, 188, 0.864), rgba(60, 80, 158, 0.864));
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.opp-color {
  background: linear-gradient(to bottom, rgba(188, 90, 113, 0.864), rgba(158, 60, 83, 0.864));
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.spectator-color {
  background: linear-gradient(to bottom, rgba(205, 188, 103, 1), rgba(175, 158, 83, 1));
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.neutral-color {
  background: linear-gradient(to bottom, rgba(112, 112, 112, 0.864), rgba(82, 82, 82, 0.864));
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

#boardButtonContainer {
  position: fixed;
  height: 6%;
  left: 52%;
  bottom: 47%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

#boardButtonContainer button {
  margin-left: 5px;
  border-radius: 10px;
  font-size: 2vh;
  cursor: pointer;
  background: linear-gradient(to bottom, rgb(250, 250, 250), rgb(230, 230, 230));
  color: rgb(60, 60, 60);
  border: 1px solid rgb(200, 200, 200);
  margin: .1vw;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

#boardButtonContainer button.dark-mode-2 {
  background: linear-gradient(to bottom, rgb(60, 60, 60), rgb(40, 40, 40));
  color: rgb(250, 250, 250);
  border-color: rgb(100, 100, 100);
  box-shadow: 0px 2px 4px rgba(255, 255, 255, 0.1);
}

#boardButtonContainer button:hover {
  background: linear-gradient(to bottom, rgb(220, 220, 220), rgb(200, 200, 200));
  color: rgb(40, 40, 40);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

#boardButtonContainer button.dark-mode-2:hover {
  background: linear-gradient(to bottom, rgb(80, 80, 80), rgb(60, 60, 60));
  color: rgb(220, 220, 220);
  box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.2);
}

#topButtonContainer {
  position: fixed;
  right: 0;
  bottom: 95vh;
  height: 4.8vh;
  width: 24%;
  display: flex;
  overflow: hidden;
  background: rgb(145, 145, 145);
  align-items: flex-end;
  border-top-left-radius: 5px;
  border-left: 2px solid rgb(145, 145, 145);
  box-sizing: border-box;
}

#greyFiller {
  position: fixed;
  right: 0;
  bottom: 90vh;
  height: 5vh;
  width: 24%;
  display: flex;
  background: rgb(145, 145, 145);
  box-sizing: border-box;
}

#topButtonContainer button {
  padding: 1vh;
  flex: 1 1 0;
  font-size: 1.75vh;
  cursor: pointer;
  border: none;
  font-weight: bold;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.selected-page {
  border-radius: 10px 10px 0 0;
  background: linear-gradient(to bottom, rgba(90, 110, 188, 0.864), rgba(60, 80, 158, 0.864));
  color: white;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.not-selected-page {
  background: linear-gradient(to bottom, rgba(112, 112, 112, 0.864), rgba(82, 82, 82, 0.864));
  color: white;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

#topButtonContainer button:not(.selected-page):hover {
  background-color: rgba(150, 144, 144, 0.864);
}

.selected-page:hover {
  background-color: rgba(116, 129, 183, 0.864);
}

.sidebox {
  background: rgb(231, 228, 228);
  position: fixed;
  right: 0;
  top: 5vh;
  width: 24%;
  height: 95vh;
  padding: 0.5%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 2px solid rgb(145, 145, 145);
}

#p1Box {
  border-radius: 0 10px 0 0;
}

#chatbox {
  width: 100%;
  height: 85%;
  background: white;
  overflow-y: auto;
  padding: 10px;
  box-sizing: border-box;
  display: block;
  border-radius: 10px 10px 0 0;
}

#tutorialButton {
  margin-left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  border: none;
  padding: 0 6px 2px 6px;
  color: white;
  border: 2px solid #a89850;
  background: linear-gradient(to bottom, #c2b07f, #ac9c52);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

#tutorialButton:hover {
  background: linear-gradient(to bottom, #bca668, #8c7e46);
  cursor: pointer;
}

#links {
  font-size: small;
  width: 100%;
  text-align: center;
}

#donationsLink {
  margin-top: 1vh;
  font-weight: bold;
}

#donationsLink:hover {
  text-decoration: underline;
  cursor: pointer;
}

#videoContainer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

#videoContainer iframe {
  position: absolute;
  left: 10%;
  width: 55.5%;
  height: 60%;
  bottom: 50%;
  transform: translateY(50%);
}

#changelog,
#donationsPage {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 76%;
  height: 100%;
  background: rgba(222, 221, 221, 0.852);
  z-index: 1000;
  overflow: auto;
  padding: 60px;
  box-sizing: border-box;
}

#line {
  background: rgb(230, 230, 230);
  width: 100%;
  height: .1vh;
  margin-top: .5vh;
}

.shift-font {
  font-family: monospace;
}

.sidebox-button-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  gap: 0.5vw;
  flex-wrap: wrap;
}

.sidebox-button-container button {
  padding: 7px;
  flex: 1 1 auto;
  min-width: fit-content;
  border-radius: 10px;
  font-size: 1.75vh;
  cursor: pointer;
  color: white;
  border: none;
  font-weight: bold;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.sidebox-button-container button.self-color:hover {
  background-color: rgba(116, 129, 183, 0.864);
}

.sidebox-button-container button.opp-color:hover {
  background-color: rgba(189, 112, 130, 0.864);
}

.sidebox-button-container button.neutral-color:hover {
  background-color: rgba(150, 144, 144, 0.864);
}

.chat-button-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
  gap: .5vw;
  box-sizing: border-box;
  margin-top: .5vh;
  margin-bottom: .5vh;
}

.chat-button-container button {
  flex: 1;
  padding: 7px;
  font-size: 2vh;
  cursor: pointer;
  color: white;
  border: none;
  border-radius: .5vw;
}

.chat-button-container button.self-color:hover {
  background-color: rgba(116, 129, 183, 0.864);
}

.chat-button-container button.opp-color:hover {
  background-color: rgba(189, 112, 130, 0.864);
}

.chat-button-container button.neutral-color:hover {
  background-color: rgba(150, 144, 144, 0.864);
}

.chat-button-container button.spectator-color:hover {
  background-color: rgb(217, 200, 117);
}

#optionsContextMenu {
  position: absolute;
  display: none;
  border: 1px solid #676767;
  padding: 2px;
  border-radius: 5px;
  right: 0.5%;
  color: white;
  background-color: #595959;
  font-size: 1.75vh;
}

#optionsContextMenu div {
  cursor: pointer;
  padding: 3px;
}

#optionsContextMenu div:hover {
  background-color: #757575;
}

#attackButton,
#p2AttackButton {
  border-radius: 0 .5vw .5vw 0;
}

#FREEBUTTON,
#p2FREEBUTTON {
  border-radius: .5vw 0 0 .5vw;
}

.centered-paragraph {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

#messageInput {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 0 0 10px 10px;
  border: none;
  background-color: #f9f9f9;
  font-size: 2vh;
  color: #333;
  outline: none;
}

#messageInput::placeholder {
  color: #999;
}

#bottomP1ButtonContainer {
  width: 100%;
}

#p2Box {
  display: none;
  border-radius: 10px 10px 0 0;
}

#p2ExplanationBox {
  width: 100%;
  background: white;
  overflow-y: auto;
  padding: 10px;
  box-sizing: border-box;
  display: block;
  border-radius: 10px 10px;
}

#lobby {
  width: 100%;
  margin-top: 5%;
}

#nameInput {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 10px;
  border: none;
  font-size: 2vh;
}

#roomId {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#roomIdInput {
  padding: 1vh;
  width: 80%;
  border-radius: 10px;
  border: none;
  font-size: 2vh;
}

#copyButton {
  margin: 10px;
  padding: .5vh;
  border-radius: 10px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  font-size: 3vh;
  display: flex;
  filter: invert(50%);
}

#copyButton img {
  height: 4vh;
}

.copied {
  background-color: #b7d9b8 !important;
  filter: none !important;
}

#generateIdButton {
  padding: 1vh;
  color: white;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 2vh;
  background: linear-gradient(to bottom, #c2b07f, #ac9c52);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

#generateIdButton:hover {
  background: linear-gradient(to bottom, #bca668, #8c7e46);
}

#coachingModeLabel,
#spectatorModeLabel {
  font-size: small;
  margin-bottom: 1.5vh;
}

#joinRoomButton {
  width: 100%;
  color: white;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 2.5vh;
  background: linear-gradient(to bottom, #666, #4c4b46);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

#joinRoomButton:hover {
  background: linear-gradient(to bottom, #555, #333);
}

#connectedRoom {
  display: none;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
}

#roomHeader {
  width: 100%;
  height: 2.5vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  color: black;
  margin-bottom: 8px;
}

#roomHeaderText {
  margin-right: 5px;
  background-color: #9dd1bd;
  border: 2px solid #61cea4;
  border-radius: 10px;
  width: 98%;
  font-size: 2vh;
  padding-top: .1vh;
  padding-bottom: .1vh;
  text-align: center;
}

#roomHeaderCopyButton {
  cursor: pointer;
  background-color: transparent;
  border-radius: 10px;
  border: none;
  font-size: 2.5vh;
  display: flex;
  filter: invert(50%);
}

#roomHeaderCopyButton img {
  height: 3vh;
}

#p2Chatbox {
  background: white;
  width: 100%;
  height: 80%;
  overflow-y: auto;
  padding: 10px;
  box-sizing: border-box;
  display: block;
  border-radius: 10px 10px 0 0;
}

#p2ChatboxButtonContainer {
  width: 100%;
}

#p2MessageInput {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 0 0 10px 10px;
  border: none;
}

#p2BottomButtonContainer {
  width: 100%;
}

#deckImport {
  display: none;
  border-radius: 10px 10px 0 0;
}

#deckBuilderButton,
#importExportGameStateButton {
  color: white;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 2vh;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 1vh;
}

#deckBuilderButton {
  border: 2px solid rgba(90, 110, 188, 0.864);
  background: linear-gradient(to bottom, rgba(90, 110, 188, 0.864), rgba(60, 80, 158, 0.864));
}

#importExportGameStateButton {
  border: 2px solid rgba(90, 110, 188, 0.864);
  background: linear-gradient(to bottom, rgba(90, 110, 188, 0.864), rgba(60, 80, 158, 0.864));
  margin-left: 0.5vw;
}

#deckBuilderButton:hover,
#importExportGameStateButton:hover {
  background-color: rgba(116, 129, 183, 0.864);
}

#decklistButton:hover {
  background: linear-gradient(to bottom, #8b50a8, #46364f);
}

#importButtonContainer {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 3%;
  padding-top: 1vh;
  align-items: center;
}

#importButtonContainer button {
  width: 50%;
  border-radius: .5rem .5rem 0 0;
  padding: .5vh;
  border: none;
  font-size: 2vh;
  background-color: rgba(171, 171, 171, 0.864);
}

#decklistTable {
  z-index: 1000;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 76%;
  height: 100%;
  background: rgba(222, 221, 221, 0.852);
  z-index: 1000;
  overflow: auto;
  padding: 30px;
  box-sizing: border-box;
  font-size: 1.75vh;
}

#decklistTable td {
  padding: 0.3vh 2vw;
}

.main-select {
  font-weight: bold;
  background: linear-gradient(to bottom, rgba(90, 110, 188, 0.864), rgba(60, 80, 158, 0.864)) !important;
  color: white;
  border: .25vw solid rgba(40, 57, 124, 0.864) !important;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.alt-select {
  font-weight: bold;
  background: linear-gradient(to bottom, rgba(188, 90, 113, 0.864), rgba(158, 60, 83, 0.864)) !important;
  color: white;
  border: .25vw solid rgba(153, 58, 81, 0.864) !important;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

#mainDeckImportInput,
#altDeckImportInput {
  height: 100%;
  width: 100%;
  padding: 2vh;
  border-radius: 5px 5px 10px 10px;
  font-size: 1.75vh;
  box-sizing: border-box;
  resize: none;
  outline: none;
}

#mainDeckImportInput {
  border: .2vw solid rgba(40, 57, 124, 0.864);
  display: inline-block;
}

#altDeckImportInput {
  display: none;
  border: .2vw solid rgba(153, 58, 81, 0.864) !important;
}

/* Import Info Note Styles */
#importInfoNote {
  width: 100%;
  margin: 1vh 0;
  background: linear-gradient(135deg, rgba(20, 20, 30, 0.98) 0%, rgba(10, 10, 20, 0.98) 100%);
  border: 1px solid rgba(100, 200, 255, 0.6);
  border-left: 4px solid rgba(100, 200, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(100, 200, 255, 0.3), 0 2px 4px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  max-height: 40vh;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

#importInfoNote.collapsed {
  max-height: 3.5vh;
  overflow: hidden;
}

#importInfoNote.collapsed #importInfoContent {
  display: none !important;
  padding: 0 !important;
  max-height: 0 !important;
  opacity: 0;
  visibility: hidden;
}

#importInfoNote.hidden {
  display: none;
}

/* Restore Import Guide Button */
.restore-import-info {
  width: 100%;
  margin: 1vh 0;
  padding: 1vh 1.5vh;
  background: linear-gradient(135deg, rgba(100, 200, 255, 0.3) 0%, rgba(100, 200, 255, 0.2) 100%);
  border: 1px solid rgba(100, 200, 255, 0.6);
  border-left: 4px solid rgba(100, 200, 255, 0.9);
  border-radius: 8px;
  color: #64c8ff;
  font-size: 1.6vh;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 0 10px rgba(100, 200, 255, 0.2);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.restore-import-info:hover {
  background: linear-gradient(135deg, rgba(100, 200, 255, 0.4) 0%, rgba(100, 200, 255, 0.3) 100%);
  border-color: rgba(100, 200, 255, 0.8);
  box-shadow: 0 0 15px rgba(100, 200, 255, 0.4);
  text-shadow: 0 0 5px rgba(100, 200, 255, 0.6);
}

#importInfoNote .import-info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vh 1.5vh;
  border-bottom: 1px solid rgba(100, 200, 255, 0.4);
  cursor: pointer;
  user-select: none;
  min-height: 3.5vh;
  box-sizing: border-box;
  background: linear-gradient(135deg, rgba(30, 30, 45, 0.9) 0%, rgba(20, 20, 35, 0.9) 100%);
}

#importInfoNote.collapsed .import-info-header {
  border-bottom: none;
  padding: 0.5vh 1.5vh;
  min-height: 3.5vh;
}

#importInfoNote .import-info-header strong {
  color: #64c8ff;
  font-weight: 600;
  font-size: 1.6vh;
  text-shadow: 0 0 8px rgba(100, 200, 255, 0.6);
}

#importInfoNote .import-info-controls {
  display: flex;
  gap: 0.5vw;
  align-items: center;
}

#importInfoNote .import-info-toggle,
#importInfoNote .import-info-close {
  background: rgba(100, 200, 255, 0.3);
  border: 1px solid rgba(100, 200, 255, 0.6);
  border-radius: 4px;
  color: #64c8ff;
  cursor: pointer;
  font-size: 1.8vh;
  font-weight: bold;
  width: 2.5vh;
  height: 2.5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  transition: all 0.2s ease;
  box-sizing: border-box;
  box-shadow: 0 0 8px rgba(100, 200, 255, 0.4);
}

#importInfoNote .import-info-toggle:hover,
#importInfoNote .import-info-close:hover {
  background: rgba(100, 200, 255, 0.5);
  border-color: rgba(100, 200, 255, 0.9);
  box-shadow: 0 0 12px rgba(100, 200, 255, 0.7);
}

#importInfoNote .import-info-close {
  font-size: 2.2vh;
}

#importInfoNote.collapsed .import-info-toggle {
  transform: rotate(-90deg);
}

#importInfoNote #importInfoContent {
  padding: 1vh 1.5vh;
  font-size: 1.4vh;
  line-height: 1.6;
  color: #e0e0e0;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(100, 200, 255, 0.5) rgba(30, 30, 45, 0.3);
  background: linear-gradient(135deg, rgba(15, 15, 25, 0.95) 0%, rgba(10, 10, 20, 0.95) 100%);
  transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
}

#importInfoNote.collapsed #importInfoContent {
  max-height: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  overflow: hidden !important;
}

#importInfoNote #importInfoContent::-webkit-scrollbar {
  width: 6px;
}

#importInfoNote #importInfoContent::-webkit-scrollbar-track {
  background: rgba(30, 30, 45, 0.5);
  border-radius: 3px;
}

#importInfoNote #importInfoContent::-webkit-scrollbar-thumb {
  background: rgba(100, 200, 255, 0.6);
  border-radius: 3px;
  box-shadow: 0 0 4px rgba(100, 200, 255, 0.4);
}

#importInfoNote #importInfoContent::-webkit-scrollbar-thumb:hover {
  background: rgba(100, 200, 255, 0.8);
  box-shadow: 0 0 6px rgba(100, 200, 255, 0.6);
}

#importInfoNote .import-info-section {
  margin-bottom: 1.2vh;
}

#importInfoNote .import-info-section:last-child {
  margin-bottom: 0;
}

#importInfoNote .import-info-section strong {
  color: #64c8ff;
  font-weight: 600;
  font-size: 1.5vh;
  display: block;
  margin-bottom: 0.4vh;
  text-shadow: 0 0 6px rgba(100, 200, 255, 0.5);
}

#importInfoNote .import-info-section p {
  margin: 0.3vh 0 0.5vh 0;
  color: #b0b0b0;
  font-size: 1.3vh;
}

#importInfoNote .import-info-section ul {
  margin: 0.4vh 0 0 0;
  padding-left: 2vh;
  list-style-type: disc;
}

#importInfoNote .import-info-section li {
  margin: 0.25vh 0;
  color: #c0c0c0;
  font-size: 1.3vh;
}

#importInfoNote .import-info-section code {
  background: rgba(100, 200, 255, 0.2);
  border: 1px solid rgba(100, 200, 255, 0.4);
  border-radius: 3px;
  padding: 0.1vh 0.4vh;
  font-family: 'Courier New', monospace;
  color: #64c8ff;
  box-shadow: 0 0 4px rgba(100, 200, 255, 0.3);
}

/* Dropdown Styles */
#importInfoNote .import-dropdown {
  margin-bottom: 1vh;
  border-radius: 4px;
  overflow: hidden;
}

#importInfoNote .import-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8vh 1.2vh;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 1.4vh;
  transition: all 0.2s ease;
}

#importInfoNote .import-dropdown-header:hover {
  opacity: 0.9;
}

#importInfoNote .import-dropdown-header .dropdown-arrow {
  font-size: 1.2vh;
  transition: transform 0.2s ease;
}

#importInfoNote .import-dropdown.collapsed .dropdown-arrow {
  transform: rotate(-90deg);
}

/* Quantum Dropdown (Purple, Red, Black) - Dark Neon */
#importInfoNote .quantum-dropdown {
  background: linear-gradient(135deg, rgba(128, 0, 128, 0.6) 0%, rgba(220, 20, 60, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
  border: 1px solid rgba(220, 20, 60, 0.8);
  border-left: 4px solid rgba(255, 0, 150, 1);
  box-shadow: 0 0 15px rgba(220, 20, 60, 0.4);
}

#importInfoNote .quantum-dropdown .import-dropdown-header {
  background: linear-gradient(135deg, rgba(128, 0, 128, 0.7) 0%, rgba(220, 20, 60, 0.7) 100%);
  color: #fff;
  border-bottom: 1px solid rgba(220, 20, 60, 0.6);
  text-shadow: 0 0 8px rgba(255, 0, 150, 0.8);
}

#importInfoNote .quantum-dropdown .import-dropdown-content {
  background: linear-gradient(135deg, rgba(20, 10, 30, 0.98) 0%, rgba(15, 5, 25, 0.98) 100%);
  padding: 1vh 1.2vh;
}

#importInfoNote .quantum-dropdown .import-info-section strong {
  color: #ff00a0;
  text-shadow: 0 0 6px rgba(255, 0, 150, 0.6);
}

#importInfoNote .quantum-dropdown .import-info-section code {
  background: rgba(128, 0, 128, 0.3);
  border: 1px solid rgba(220, 20, 60, 0.5);
  color: #ff80d0;
  box-shadow: 0 0 4px rgba(220, 20, 60, 0.4);
}

/* Limitless Dropdown (Black, White, Red) - Dark Neon */
#importInfoNote .limitless-dropdown {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(40, 40, 40, 0.6) 50%, rgba(220, 20, 60, 0.6) 100%);
  border: 1px solid rgba(220, 20, 60, 0.8);
  border-left: 4px solid rgba(255, 50, 50, 1);
  box-shadow: 0 0 15px rgba(220, 20, 60, 0.4);
}

#importInfoNote .limitless-dropdown .import-dropdown-header {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(60, 60, 60, 0.7) 100%);
  color: #fff;
  border-bottom: 1px solid rgba(220, 20, 60, 0.6);
  text-shadow: 0 0 8px rgba(255, 50, 50, 0.8);
}

#importInfoNote .limitless-dropdown .import-dropdown-content {
  background: linear-gradient(135deg, rgba(15, 15, 20, 0.98) 0%, rgba(10, 10, 15, 0.98) 100%);
  padding: 1vh 1.2vh;
}

#importInfoNote .limitless-dropdown .import-info-section strong {
  color: #ff5050;
  text-shadow: 0 0 6px rgba(255, 50, 50, 0.6);
}

#importInfoNote .limitless-dropdown .import-info-section code {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(220, 20, 60, 0.5);
  color: #ff8080;
  box-shadow: 0 0 4px rgba(220, 20, 60, 0.4);
}

/* Standard Dropdown (Black, White, Blue) - Dark Neon */
#importInfoNote .standard-dropdown {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(30, 30, 50, 0.6) 50%, rgba(0, 150, 255, 0.6) 100%);
  border: 1px solid rgba(0, 150, 255, 0.8);
  border-left: 4px solid rgba(100, 200, 255, 1);
  box-shadow: 0 0 15px rgba(0, 150, 255, 0.4);
}

#importInfoNote .standard-dropdown .import-dropdown-header {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(40, 40, 60, 0.7) 100%);
  color: #fff;
  border-bottom: 1px solid rgba(0, 150, 255, 0.6);
  text-shadow: 0 0 8px rgba(100, 200, 255, 0.8);
}

#importInfoNote .standard-dropdown .import-dropdown-content {
  background: linear-gradient(135deg, rgba(10, 15, 25, 0.98) 0%, rgba(5, 10, 20, 0.98) 100%);
  padding: 1vh 1.2vh;
}

#importInfoNote .standard-dropdown .import-info-section strong {
  color: #64c8ff;
  text-shadow: 0 0 6px rgba(100, 200, 255, 0.6);
}

#importInfoNote .standard-dropdown .import-info-section code {
  background: rgba(0, 100, 200, 0.3);
  border: 1px solid rgba(100, 200, 255, 0.5);
  color: #80d0ff;
  box-shadow: 0 0 4px rgba(0, 150, 255, 0.4);
}

/* Dropdown Content Collapse */
#importInfoNote .import-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out, opacity 0.3s ease-out;
  padding: 0 1.2vh;
  opacity: 0;
  visibility: hidden;
}

#importInfoNote .import-dropdown:not(.collapsed) .import-dropdown-content {
  max-height: 2000px;
  padding: 1vh 1.2vh;
  opacity: 1;
  visibility: visible;
}

/* Import UI Layout */
.import-main-row {
  display: flex;
  gap: 0.5vw;
  margin-bottom: 1vh;
  flex-wrap: wrap;
  align-items: center;
}

.import-main-row button {
  flex: 1 1 auto;
  min-width: fit-content;
  box-sizing: border-box;
}

.import-utility-row {
  display: flex;
  gap: 0.5vw;
  margin-bottom: 1vh;
  flex-wrap: wrap;
  align-items: center;
}

.import-second-row {
  display: flex;
  gap: 8px;
  margin-bottom: 1vh;
  flex-wrap: wrap;
  align-items: center;
}

.import-second-row button {
  flex: 1 1 auto;
  min-width: fit-content;
  box-sizing: border-box;
}

#importBottom {
  margin-top: 0.5vw;
  margin-bottom: 0.5vw;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5vw;
  flex-wrap: wrap;
}

#importBottomSecondRow {
  margin-top: 0.5vw;
  margin-bottom: 0.5vw;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
  flex-wrap: wrap;
}

#importButton,
#confirmButton,
#pasteCsvButton,
#recentCsvButton,
#randomButton,
#decklistsButton {
  cursor: pointer;
  border-radius: .5rem;
  padding: 0.7vh 0.8vw;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 2.2vh;
  box-sizing: border-box;
  color: white;
  font-weight: bold;
  border: none;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.75rem, 1.3vh, 1.1rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Primary action buttons - use self-color (blue) */
#importButton,
#confirmButton,
#pasteCsvButton {
  background: linear-gradient(to bottom, rgba(90, 110, 188, 0.864), rgba(60, 80, 158, 0.864));
}

#importButton:hover,
#confirmButton:hover,
#pasteCsvButton:hover {
  background-color: rgba(116, 129, 183, 0.864);
}

.recent-csv-container {
  position: relative;
  display: inline-flex;
  flex: 1 1 auto;
  min-width: 0;
}

#recentCsvButton {
  background: linear-gradient(to bottom, rgba(90, 110, 188, 0.864), rgba(60, 80, 158, 0.864));
  color: white;
  width: 100%;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

#recentCsvButton:hover {
  background-color: rgba(116, 129, 183, 0.864);
}

.recent-csv-dropdown {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 5px;
}

.recent-csv-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  font-size: 14px;
}

.recent-csv-item:hover {
  background-color: rgba(74, 144, 226, 0.1);
}

.recent-csv-item:last-child {
  border-bottom: none;
}

.recent-csv-name {
  flex: 1;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recent-csv-actions {
  display: flex;
  gap: 5px;
}

.recent-csv-pin,
.recent-csv-delete {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  padding: 2px 4px;
  border-radius: 3px;
}

.recent-csv-pin {
  color: #ff6b35;
}

.recent-csv-pin:hover {
  background-color: rgba(255, 107, 53, 0.1);
}

.recent-csv-delete {
  color: #dc3545;
}

.recent-csv-delete:hover {
  background-color: rgba(220, 53, 69, 0.1);
}

.recent-csv-pinned {
  background-color: rgba(255, 107, 53, 0.1);
}

.recent-csv-empty {
  color: #999;
  font-style: italic;
}

/* Dark mode support for recent CSV dropdown */
@media (prefers-color-scheme: dark) {
  .recent-csv-dropdown {
    background-color: rgba(40, 40, 40, 0.95);
    border: 1px solid #555;
  }

  .recent-csv-item {
    border-bottom: 1px solid #444;
  }

  .recent-csv-item:last-child {
    border-bottom: none;
  }

  .recent-csv-item:hover {
    background-color: rgba(74, 144, 226, 0.2);
  }

  .recent-csv-name {
    color: #e0e0e0;
  }

  .recent-csv-pinned {
    background-color: rgba(255, 107, 53, 0.2);
  }

  .recent-csv-empty {
    color: #999;
  }
}

#cancelButton,
#confirmButton,
#saveButton {
  cursor: pointer;
  display: none;
  flex: 1 1 auto;
  min-width: fit-content;
  border-radius: .5rem;
  padding: .7vh;
  border: none;
  color: white;
  font-weight: bold;
  box-sizing: border-box;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

#cancelButton {
  background: linear-gradient(to bottom, rgba(188, 90, 113, 0.864), rgba(158, 60, 83, 0.864));
}

#cancelButton:hover {
  background-color: rgba(189, 112, 130, 0.864);
}

/* Mobile responsive adjustments for import buttons */
@media (max-width: 768px) {

  #importBottom,
  #importBottomSecondRow {
    gap: 0.5vh;
  }

  #importButton,
  #confirmButton,
  #pasteCsvButton,
  #recentCsvButton,
  #randomButton,
  #cancelButton,
  #saveButton {
    padding: 0.8vh;
    font-size: 0.9em;
  }

  .import-main-row,
  .import-second-row {
    gap: 0.5vh;
  }

  .import-main-row button,
  .import-second-row button {
    font-size: 0.9em;
    padding: 0.6vh 0.8vw;
  }

  #uploadFileButton,
  #changeCardBackButton,
  #changeLanguageButton,
  #saveCurrentButton {
    font-size: 1.3vh;
    padding: 2px 4px;
  }
}

@media (max-width: 480px) {
  #importBottom {
    flex-direction: column;
    align-items: stretch;
  }

  #importBottomSecondRow {
    flex-direction: column;
    align-items: stretch;
  }

  #importButton,
  #confirmButton,
  #pasteCsvButton,
  #recentCsvButton,
  #randomButton,
  #cancelButton,
  #saveButton {
    width: 100%;
    padding: 1vh;
  }

  .recent-csv-container {
    width: 100%;
  }
}

#uploadButtonsContainer {
  margin: 0.3vw;
}

#uploadFileButton,
#changeCardBackButton,
#changeLanguageButton,
#saveCurrentButton {
  padding: 1vh;
  cursor: pointer;
  color: white;
  border: none;
  border-radius: .5rem;
  font-size: 1.75vh;
  flex: 1 1 auto;
  min-width: fit-content;
  box-sizing: border-box;
  font-weight: bold;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

#changeBackgroundButton {
  padding: 10px;
  cursor: pointer;
  color: white;
  border: none;
  border-radius: .5rem;
  font-size: 2vh;
  font-weight: bold;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  width: calc(100% - 2vh);
  margin: 1vh;
}

#uploadFileButton.self-color:hover,
#changeCardBackButton.self-color:hover,
#saveCurrentButton.self-color:hover {
  background-color: rgba(116, 129, 183, 0.864);
}

#uploadFileButton.opp-color:hover,
#changeCardBackButton.opp-color:hover,
#saveCurrentButton.opp-color:hover {
  background-color: rgba(189, 112, 130, 0.864);
}

#changeLanguageButton:hover,
#saveButton:hover,
#changeBackgroundButton:hover {
  background-color: rgba(150, 144, 144, 0.864);
}

.language-container {
  position: relative;
  display: inline-block;
}

#languageDropdown {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  background-color: #f9f9f9;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 5px;
}

#languageDropdown ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#languageDropdown li {
  padding: 10px;
  cursor: pointer;
}

#languageDropdown li:hover {
  background-color: #d7d7d7;
  color: #141414;
}

#saveCurrentButton {
  display: none;
}

#randomButton,
#decklistsButton {
  background: linear-gradient(to bottom, rgba(112, 112, 112, 0.864), rgba(82, 82, 82, 0.864));
}

#randomButton:hover,
#decklistsButton:hover {
  background-color: rgba(150, 144, 144, 0.864);
}

#successText,
#failedText,
#loadingText,
#invalidText {
  display: none;
}

#settings {
  display: none;
  border-radius: 10px 0 0 0;
}

#settingsToggles {
  background: white;
  width: 100%;
  height: min-content;
  overflow-y: auto;
  padding: 10px;
  box-sizing: border-box;
  display: block;
  border-radius: 10px;
}

#settings label {
  position: relative;
  cursor: pointer;
}

#darkModeCheckbox,
#showZonesCheckbox,
#hideHandCheckbox,
#keybindReminder {
  margin-top: 1vh;
}

#keybindReminder {
  text-align: center;
  width: 100%;
  color: grey;
}

#twitterDescription {
  position: absolute;
  bottom: 2%;
  left: 5%;
  display: block;
  max-width: 90%;
  font-weight: bold;
}

#twitterHandle {
  font-weight: normal;
  margin-top: 1vh;
  display: flex;
  align-items: center;
}

#twitterHandle img {
  margin-right: .5vw;
  height: 2vh;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.card-context-menu button {
  display: block;
}

.card-context-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  width: 150px;
}

.card-context-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.card-context-menu ul li[id$="Header"] {
  padding: 4px;
  cursor: default;
  font-weight: bold;
  background-color: #f0f0f0;
}

.card-context-menu ul li.rotate-break-button {
  color: #d4af37;
  font-weight: bold;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.card-context-menu.dark-mode-2 ul li.rotate-break-button {
  color: #ffd700;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.08) 100%);
}

.card-context-menu:not(.dark-mode-2) ul li.rotate-break-button:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.card-context-menu.dark-mode-2 ul li.rotate-break-button:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 215, 0, 0.15) 100%);
}

.card-context-menu>ul>li {
  padding: 8px 16px;
  cursor: pointer;
  position: relative;
}

.card-context-menu>ul>li>ul>li {
  padding: 0px 16px;
}

.card-context-menu:not(.dark-mode-2)>ul>li:hover,
.card-context-menu:not(.dark-mode-2) .card-sub-menu li:hover {
  background-color: #f0f0f0;
}

.card-context-menu.dark-mode-2>ul>li:hover,
.card-context-menu.dark-mode-2 .card-sub-menu li:hover {
  background-color: #4f4f4f;
}

.card-context-menu .card-sub-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1001;
  background-color: #fff;
  padding: 8px;
  border: 1px solid #ccc;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  width: 120px;
}

.card-context-menu>ul>li:hover>.card-sub-menu {
  display: block;
}

.card-context-menu ul li#moveButton:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #525252;
}

.self-text,
.announcement,
.opp-text,
.self-message,
.opp-message,
.spectator-message,
.loading-spectator {
  word-wrap: break-word;
  display: block;
  font-size: 1.75vh;
  margin: 0.5vh 0 0 0;
  border-radius: 10px;
  padding: 0.25vh 1vh;
  color: black;
}

.announcement {
  background-color: rgb(205, 203, 203);
  text-align: center;
  user-select: text;
}

.loading-spectator {
  background-color: rgb(205 188 103);
  text-align: center;
}

.self-message {
  background-color: rgba(142, 155, 209, 0.864);
  text-align: left;
  width: fit-content;
  user-select: text;
}

.opp-message {
  background-color: rgba(187, 120, 136, 0.864);
  text-align: left;
  width: fit-content;
  user-select: text;
}

.spectator-message {
  background-color: rgb(228, 214, 145);
  text-align: left;
  width: fit-content;
  user-select: text;
}

.self-text {
  background-color: rgba(211, 219, 250, 0.864);
  text-align: left;
  width: fit-content;
}

.opp-text {
  background-color: rgba(247, 217, 223, 0.864);
  text-align: left;
  width: fit-content;
}

.break-message {
  word-wrap: break-word;
  display: block;
  font-size: 1.75vh;
  margin: 0.5vh 0 0 0;
  border-radius: 10px;
  padding: 0.25vh 1vh;
  color: black;
  text-align: left;
  width: fit-content;
  /* Golden/yellow tint while maintaining container style */
  background: linear-gradient(135deg,
      rgba(255, 215, 0, 0.4) 0%,
      rgba(255, 200, 0, 0.5) 50%,
      rgba(255, 215, 0, 0.4) 100%);
  border: 1px solid rgba(255, 215, 0, 0.6);
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.decklists-context-menu {
  display: none;
  position: absolute;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
  z-index: 2;
  height: fit-content;
}

.decklists-context-menu-item {
  padding: .3vh 1vw;
  cursor: pointer;
  font-size: small;
}

.decklists-context-menu-sub-menu {
  font-weight: normal;
  display: none;
  position: absolute;
  background-color: #c1c1c1;
  left: 99%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
  border-radius: 5px;
  top: 0;
  height: 100%;
  width: 112%;
  color: #141414;
}

.decklist-highlight {
  background-color: #f0f0f0;
  font-weight: bold;
}

.custom-popup {
  position: fixed;
  top: 50%;
  left: 37.75%;
  transform: translate(-50%, -50%);
  background-color: white;
  border: 2px solid #424242;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  text-align: center;
  z-index: 9999;
  border-radius: 5px;
}

.popup-content {
  text-align: center;
}

.popup-button {
  display: block;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  background-color: #333;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.popup-button:hover {
  background-color: #555;
}

#loadingCircle {
  width: 1vh;
  /* Adjust size as needed */
  height: 1vh;
  /* Adjust size as needed */
  border: .4vh solid #f3f3f3;
  /* Light gray border */
  border-top: .4vh solid #3498db;
  /* Blue border for animation */
  border-radius: 50%;
  /* Circle shape */
  animation: spin .5s linear infinite;
  /* Spin animation */
  display: none;
  margin: 0.5vh 0vh 0.5vh 0vh;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  /* Start at 0 degrees */
  100% {
    transform: rotate(360deg);
  }

  /* End at 360 degrees (full circle) */
}