@font-face {
  font-family: "Lato";
  src: url(Lato/Lato-Regular.ttf);
}
@font-face {
  font-family: "Lato";
  src: url(Lato/Lato-Regular.ttf);
}
.buttonCard {
  flex: 1 1 0;
  position: relative;
  background-color: #000000;
  border-radius: 10px;
  background-image: url("./hover-background.svg");
  background-repeat: no-repeat;
  background-position: right top;
  display: inline-block;
  text-decoration: none;
}
.buttonCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.buttonCard:hover .buttonContainer, .buttonCard.clicked .buttonContainer {
  background-color: transparent;
}
.buttonCard:hover .corner, .buttonCard.clicked .corner {
  opacity: 0;
}
.buttonCard.clicked {
  animation: switchImages 0.3s ease-out forwards;
}
.buttonCard .buttonContainer {
  padding: 40px;
  color: #ffffff;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  background-color: #000000;
  border-radius: inherit;
  transition: background-color 0.3s ease-out;
}
.buttonCard .buttonContainer .header {
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.buttonCard .buttonContainer .header .title {
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.6px;
  margin: 0;
}
.buttonCard .buttonContainer .footer {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.16px;
  margin: 0;
}
.buttonCard .corner {
  position: relative;
  left: calc(100% - 74px);
  bottom: 74px;
  height: 70px;
  width: 70px;
  background-color: transparent;
  border-bottom: 8px solid #ffa500;
  border-right: 8px solid #ffa500;
  border-bottom-right-radius: 18px;
  transition: opacity 0.3s ease-out;
}
.buttonCard .corner .horizontal,
.buttonCard .corner .vertical {
  position: relative;
  background-color: #ffa500;
  border-radius: 10px;
}
.buttonCard .corner .horizontal {
  left: calc(100% - 78px);
  bottom: calc(100% - 140px);
  height: 8px;
  width: 40px;
}
.buttonCard .corner .vertical {
  left: 100%;
  bottom: calc(100% - 54px);
  height: 40px;
  width: 8px;
}

@keyframes switchImages {
  0% {
    background-size: 100% 100%, cover, cover;
  }
  100% {
    background-size: 100% 100%, cover, cover;
    background-position: top right;
    background-image: url("./clicked-background.svg"), url("./hover-background.svg");
  }
}
@font-face {
  font-family: "Lato";
  src: url(Lato/Lato-Regular.ttf);
}
.infoMessage {
  z-index: 99999;
  position: fixed;
  overflow: auto;
  padding: 16px;
  border: 2px solid #ef7402;
  box-shadow: 0 0 140px #bbbbbb;
  color: white;
  top: 10vh;
  left: 10vw;
  width: 80vw;
  height: 80vh;
  box-sizing: border-box;
  border-radius: 20px;
  background-image: url("background.png");
  background-repeat: repeat;
}

.XButton {
  float: right;
  width: 30px;
  text-align: center;
  font-weight: bold;
  color: var(--pomaranczowy);
  cursor: pointer;
  position: sticky;
  top: 12px;
  right: 2px;
}

.XButton:hover {
  text-shadow: 0 0 5px white;
}

@font-face {
  font-family: "Lato";
  src: url(Lato/Lato-Regular.ttf);
}
.load {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding-top: 45vh;
  font-size: 2.5rem;
  z-index: 99999;
}

.loginView {
  background-image: url("car-background.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100vw;
  height: 100vh;
  user-select: none;
}
.loginView .formContainer,
.loginView .loginForm {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-evenly;
}
.loginView .formContainer {
  height: 100vh;
  width: min-content;
  float: right;
  padding-right: 3vw;
}
.loginView .loginForm {
  gap: 1rem;
  width: 25vw;
  max-width: 30rem;
}
.loginView .loginForm input {
  width: 100%;
  min-width: 12.5rem;
  border-radius: 10px;
  border: 0;
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-size: 1.25rem;
  padding: 0.6rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  background-color: #24252f;
  box-sizing: border-box;
}
.loginView .primaryButton {
  border: none;
  outline: none;
  width: 100%;
  min-width: 12.5rem;
  background-color: #ef7402;
  color: #ffffff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  font-family: "Lato";
  padding: 1rem 2.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 300ms;
}
.loginView .primaryButton:disabled {
  background-color: rgba(239, 116, 2, 0.5019607843);
}
.loginView .primaryButton:hover:enabled {
  background-color: #ffa500;
}
.loginView .legalInformation {
  display: grid;
  grid-auto-flow: column;
  gap: 0.5rem;
  cursor: pointer;
}
.loginView .legalInformation * {
  cursor: pointer;
}
.loginView .legalInformation .checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1em;
  height: 1em;
  font: inherit;
  border: 0.1em solid #ef7402;
  margin-bottom: -0.125em;
  transition: all 300ms;
}
.loginView .legalInformation .checkbox:not(:checked):hover {
  width: 1em;
  height: 1em;
  border-color: transparent;
  background: #ef7402 border-box;
}
.loginView .legalInformation .checkbox:checked {
  width: 1em;
  height: 1em;
  border-color: transparent;
  background-image: url("checkmark.png");
  background-repeat: no-repeat;
  background-size: contain;
  border: 0.1em solid #ef7402;
}

.neoLogo {
  height: 14vh;
  max-width: 100%;
  margin: 6vh 3vw;
}

input:-internal-autofill-selected {
  background-color: #24252f !important;
  font-weight: 300;
  font-size: 1.25rem;
  font-family: "Lato";
}

.surveyDialog {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background-color: #000000;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 2px #000000;
  max-width: 70%;
  max-height: 80%;
}
.surveyDialog .surveyHeader {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.surveyDialog .surveyHeader .languageSelect {
  align-self: flex-end;
  background-color: #ef7402;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 300ms;
}
.surveyDialog .surveyHeader .languageSelect:hover {
  background-color: #ffa500;
  cursor: pointer;
}
.surveyDialog .surveyFooter, .surveyDialog .surveyHeaderText {
  font-size: 2rem;
}
.surveyDialog .surveyForm {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow: auto;
  padding: 2rem 0;
}
.surveyDialog .surveyForm .surveyQuestion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem;
}
.surveyDialog .surveyForm .surveyQuestion label {
  font-size: 1.25rem;
  cursor: pointer;
}
.surveyDialog .surveyForm .surveyQuestion .questionText {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-left: -1rem;
}
.surveyDialog .surveyForm .surveyQuestion .questionCheckbox, .surveyDialog .surveyForm .surveyQuestion .questionRadio {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.surveyDialog .surveyForm .surveyQuestion .questionCheckbox .checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1em;
  height: 1em;
  font: inherit;
  border: 0.1em solid #ef7402;
  margin-bottom: -0.125em;
  cursor: pointer;
  transition: all 300ms;
}
.surveyDialog .surveyForm .surveyQuestion .questionCheckbox .checkbox:not(:checked):hover {
  width: 1em;
  height: 1em;
  border-color: transparent;
  background: #ef7402 border-box;
}
.surveyDialog .surveyForm .surveyQuestion .questionCheckbox .checkbox:checked {
  width: 1em;
  height: 1em;
  border-color: transparent;
  background-image: url("checkmark.png");
  background-repeat: no-repeat;
  background-size: contain;
  border: 0.1em solid #ef7402;
}
.surveyDialog .surveyForm .surveyQuestion .questionRadio .radio {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1em;
  height: 1em;
  font: inherit;
  border: 0.1em solid #ef7402;
  border-radius: 50%;
  margin-bottom: -0.125em;
  cursor: pointer;
  transition: all 300ms;
}
.surveyDialog .surveyForm .surveyQuestion .questionRadio .radio:not(:checked):hover {
  border-color: transparent;
  background: #ef7402 border-box;
}
.surveyDialog .surveyForm .surveyQuestion .questionRadio .radio:checked {
  border-color: transparent;
  background-color: #ef7402;
  background-repeat: no-repeat;
  background-size: contain;
}
.surveyDialog .surveyForm .surveyQuestion .questionRating {
  display: flex;
  align-items: baseline;
  font-size: 1.5rem;
}
.surveyDialog .surveyForm .surveyQuestion .questionRating .rating {
  cursor: pointer;
  color: #ef7402;
  padding: 0.25rem;
}
.surveyDialog .surveyForm .surveyQuestion .questionRating .ratingText {
  margin-left: 1rem;
  font-size: 1.25rem;
}
.surveyDialog .surveyForm .surveyQuestion .questionOpenText, .surveyDialog .surveyForm .surveyQuestion .otherCheckbox, .surveyDialog .surveyForm .surveyQuestion .otherRadio {
  min-width: 12.5rem;
  border-radius: 10px;
  border: 0;
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-size: 1.25rem;
  padding: 0.6rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  background-color: #24252f;
  box-sizing: border-box;
}
.surveyDialog .surveyForm .surveyQuestion .otherCheckbox, .surveyDialog .surveyForm .surveyQuestion .otherRadio {
  width: 15%;
}
.surveyDialog .surveyForm .surveyQuestion .questionOpenText {
  width: 50%;
  resize: both;
  min-width: 20rem;
  max-width: 100%;
  min-height: 3rem;
  max-height: 10rem;
  overflow: auto;
}
.surveyDialog .surveyActions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  align-self: flex-end;
}

@font-face {
  font-family: "Lato";
  src: url(Lato/Lato-Regular.ttf);
}
.menuBox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 3vw 3vh 3vw;
  min-height: 80vh;
}
.menuBox .menuHeader {
  flex: 1 1 0;
}
.menuBox .buttonCard {
  min-width: 30rem;
  max-height: 30rem;
}
.menuBox .buttonCard .title {
  font-size: 3rem;
}
.menuBox .orangeText {
  color: #ef7402;
}

@font-face {
  font-family: "Lato";
  src: url(Lato/Lato-Regular.ttf);
}
.calculatorBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  padding: 0 3vw;
}
.calculatorBox .buttonCard {
  min-width: 25rem;
  max-height: 15rem;
}
.calculatorBox .buttonCard .title {
  font-size: 2rem;
}
.calculatorBox .calculator {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  flex: 1 1 0;
  padding-bottom: 3vh;
}

.calculatorCategory {
  font-size: 2rem;
}
.calculatorCategory a {
  transition: all 0.5s;
  font-size: 2rem;
  text-decoration: none;
  color: #ef7402;
}
.calculatorCategory a:hover {
  color: #ffa500;
  filter: drop-shadow(0 0 10px #ffa500);
}

.calculatorHeaderRow {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 3vw;
  gap: 2rem;
}

.calculatorList {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  height: 100%;
}
.calculatorList .searchInput {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.calculatorList .searchInput input {
  width: 100%;
  min-width: 12.5rem;
  border-radius: 10px;
  border: 0;
  padding: 0.6rem 2.5rem;
  box-sizing: border-box;
  transition-property: width, border-radius;
}
.calculatorList .searchInput .closeButton {
  display: none;
  width: 4rem;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
}
.calculatorList .searchInput .closeButton svg {
  transition: background-color 0.3s;
}
.calculatorList .searchInput .closeButton:hover svg {
  filter: drop-shadow(0 0 10px #ffa500);
}
.calculatorList .searchInput .closeButton:active svg {
  filter: drop-shadow(0 0 10px #ef7402);
}
.calculatorList .searchInput input,
.calculatorList .searchInput .closeButton {
  border: none;
  outline: none;
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  background-color: #24252f;
}
.calculatorList .searchInput input:not(:placeholder-shown) {
  border-radius: 10px 0 0 10px;
}
.calculatorList .searchInput input:not(:placeholder-shown) + button {
  display: block;
}
.calculatorList .controllersList {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  background-color: #000000;
  border-radius: 10px;
  font-size: 1.25rem;
  overflow: auto;
}
.calculatorList .controllersList .expandableRow {
  padding: 1rem 2rem;
}
.calculatorList .controllersList .expandableRow .listItem {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s;
}
.calculatorList .controllersList .expandableRow .listItem:hover {
  color: #ffa500;
}
.calculatorList .controllersList .expandableRow .active {
  transition: all 0.3s;
  color: #ef7402;
}
.calculatorList .controllersList .expandableRow .expandableRow {
  padding: 1rem 0;
  margin: 0 2rem;
}
.calculatorList .controllersList .expandableRow .expandableRow:last-child {
  padding-bottom: 0;
}
.calculatorList .controllersList .mainBorder:not(:last-child) {
  border-bottom: solid 1px #ffffff;
}
.calculatorList .controllersList .secondaryBorder:not(:last-child) {
  border-bottom: solid 1px rgba(255, 255, 255, 0.8);
}
.calculatorList .controllersList .tertiaryBorder:not(:last-child) {
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}

.sterownikCategory {
  font-size: 2rem;
  margin: 0 3vw;
}
.sterownikCategory a {
  transition: all 0.5s;
  font-size: 2rem;
  text-decoration: none;
  color: #ef7402;
}
.sterownikCategory span {
  cursor: pointer;
  font-size: 2rem;
  transition: all 0.5s;
  color: #ef7402;
}
.sterownikCategory a:hover,
.sterownikCategory span:hover {
  color: #ffa500;
  filter: drop-shadow(0 0 10px #ffa500);
}

.sterownikInfo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  flex: 1;
}
.sterownikInfo .actionButtons,
.sterownikInfo .row {
  display: flex;
  flex-direction: row;
}
.sterownikInfo .actionButtons {
  gap: 1rem;
  flex-wrap: wrap;
}
.sterownikInfo .fileInput {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: center;
}
.sterownikInfo .fileInput input {
  border: none;
  outline: none;
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  background-color: #24252f;
  height: 100%;
  min-width: 20rem;
  border-radius: 10px 0 0 10px;
  margin-right: -1rem;
  padding-left: 1rem;
}
.sterownikInfo .infoTable {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  background-color: #000000;
  border-radius: 10px;
}
.sterownikInfo .infoTable th,
.sterownikInfo .infoTable td {
  padding-right: 1rem;
}
.sterownikInfo .infoTable .row {
  padding: 1rem 2rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.sterownikInfo .infoTable .row .fileName {
  width: 20%;
  min-width: fit-content;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.sterownikInfo .infoTable .row .fileActions {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  gap: 1rem;
}
.sterownikInfo .infoTable .row .fileActions input {
  flex: 1;
  padding: 0 1rem;
  border: none;
  outline: none;
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  background-color: #24252f;
  min-width: 10rem;
  border-radius: 10px;
}
.sterownikInfo .infoTable .row .fileActions .flexDiv {
  display: flex;
}
.sterownikInfo .infoTable .row div {
  flex: 1;
  font-size: 1.25rem;
}
.sterownikInfo .infoTable .row:not(:last-child) {
  border-bottom: solid 1px #ffffff;
}
.sterownikInfo .sterownikMethods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.sterownikInfo .sterownikMethods .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-radius: 10px;
  border: solid 1px #ffffff;
  background-color: #000000;
  gap: 1rem;
}
.sterownikInfo .sterownikMethods .row div {
  font-size: 1.25rem;
}
.sterownikInfo .sterownikMethods .row .methodName {
  width: 20%;
  min-width: fit-content;
}
.sterownikInfo .sterownikMethods .row .espDescription {
  flex: 5;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 3rem;
}
.sterownikInfo .sterownikMethods .row .espDescription strong {
  width: 13rem;
}
.sterownikInfo .sterownikMethods .row .espDescription div {
  flex: 1;
}
.sterownikInfo .sterownikMethods .row .methodActions {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  gap: 1rem;
  /* Firefox */
}
.sterownikInfo .sterownikMethods .row .methodActions input::-webkit-outer-spin-button,
.sterownikInfo .sterownikMethods .row .methodActions input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.sterownikInfo .sterownikMethods .row .methodActions input[type=number] {
  -moz-appearance: textfield;
}
.sterownikInfo .sterownikMethods .row .methodActions input {
  flex: 1;
  padding: 0 1rem;
  border: none;
  outline: none;
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  background-color: #24252f;
  min-width: 10rem;
  border-radius: 10px;
}
.sterownikInfo .sterownikMethods .row .methodActions .flexDiv {
  display: flex;
}
.sterownikInfo .sterownikMethods .row .methodActions .formField {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min-content;
  min-width: 10rem;
  padding: 0 1rem;
  border: none;
  outline: none;
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  background-color: #24252f;
  border-radius: 10px;
  width: 13rem;
}
.sterownikInfo .sterownikMethods .row .methodActions .formField label {
  font-size: 0.75rem;
  padding-top: 0.25rem;
  word-wrap: normal;
}
.sterownikInfo .sterownikMethods .row .methodActions .formField select {
  appearance: none;
  border: none;
  outline: none;
  color: #ffffff;
  background: url("dropdownIcon.svg") no-repeat right 0.3rem/1rem, #24252f;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  font-family: "Lato";
  cursor: pointer;
  text-align: justify;
  padding: 0.5rem 2rem 0.5rem 0;
  width: 100%;
}
.sterownikInfo .sterownikMethods .row .methodActions .formField input {
  padding: 0;
}
.sterownikInfo .warningMessage {
  color: #ffa500;
}

.neoInput {
  width: 100%;
  min-width: 12.5rem;
  border-radius: 10px;
  border: 0;
  padding: 0.6rem 2.5rem;
  box-sizing: border-box;
  transition-property: width, border-radius;
}

.calculatorMain {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.spacer {
  flex: 1;
}

.footerAlgorithms {
  margin-left: 3vw;
  background-color: #000000;
  width: fit-content;
  color: rgba(255, 255, 255, 0.7);
  padding: 1rem;
}

.calculatorListMenuContainer {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0 3vw;
  gap: 1rem;
  height: calc(100% - 18vh - 6rem);
}

.sideToolIcon {
  position: fixed;
  top: calc(16vh + 2rem);
  left: -0.25rem;
  background-color: #ef7402;
  border: none;
  outline: none;
  color: #ffffff;
  border-radius: 0 10px 10px 0;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: "Lato";
  padding: 1rem;
  cursor: pointer;
  transition: all 300ms;
}
.sideToolIcon:hover {
  background-color: #ffa500;
}

@font-face {
  font-family: "Lato";
  src: url(Lato/Lato-Regular.ttf);
}
.neoDatabaseBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  padding: 0 3vw;
  height: calc(100% - 15vh);
  width: calc(100% - 6vw);
  overflow-y: scroll;
}
.neoDatabaseBox .headerSection {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.neoDatabaseBox .headerSection .tokens {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  border: none;
  outline: none;
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  background-color: #24252f;
  border-radius: 10px;
  padding: 1rem;
  width: 8rem;
}
.neoDatabaseBox .headerSection .tokens p {
  font-size: 1rem;
  margin: 0;
}
.neoDatabaseBox .headerSection .tokens b {
  color: #ffa500;
}
.neoDatabaseBox .neoDatabase {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1rem;
  width: 100%;
  height: calc(100% - 8rem);
}
.neoDatabaseBox .neoDatabase .searchInput {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.neoDatabaseBox .neoDatabase .searchInput input {
  width: 100%;
  min-width: 12.5rem;
  border-radius: 10px 0 0 10px;
  border: 0;
  padding: 0.6rem 2.5rem;
  box-sizing: border-box;
  transition-property: width;
}
.neoDatabaseBox .neoDatabase .searchInput .closeButton {
  display: none;
  width: 4rem;
  cursor: pointer;
}
.neoDatabaseBox .neoDatabase .searchInput .closeButton svg {
  transition: background-color 0.3s;
}
.neoDatabaseBox .neoDatabase .searchInput .searchButton {
  border-radius: 0 10px 10px 0;
  width: 4rem;
  cursor: pointer;
}
.neoDatabaseBox .neoDatabase .searchInput .searchButton svg {
  transition: background-color 0.3s;
}
.neoDatabaseBox .neoDatabase .searchInput .closeButton:hover svg,
.neoDatabaseBox .neoDatabase .searchInput .searchButton:hover svg {
  filter: drop-shadow(0 0 10px #ffa500);
}
.neoDatabaseBox .neoDatabase .searchInput .closeButton:active svg,
.neoDatabaseBox .neoDatabase .searchInput .searchButton:active svg {
  filter: drop-shadow(0 0 10px #ef7402);
}
.neoDatabaseBox .neoDatabase .searchInput input,
.neoDatabaseBox .neoDatabase .searchInput .closeButton,
.neoDatabaseBox .neoDatabase .searchInput .searchButton {
  border: none;
  outline: none;
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  background-color: #24252f;
}
.neoDatabaseBox .neoDatabase .searchInput input:not(:placeholder-shown) + button {
  display: block;
}
.neoDatabaseBox .neoDatabase .databaseExplorer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2rem;
  gap: 2rem;
  background-color: #000000;
  border-radius: 10px;
  overflow: auto;
  flex: 1;
  min-height: 300px;
}
.neoDatabaseBox .neoDatabase .databaseExplorer .actionButtons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: #ef7402 solid 1px;
  width: 100%;
  gap: 1rem;
}
.neoDatabaseBox .neoDatabase .databaseExplorer .actionButtons .iconButton {
  padding: 1rem;
}
.neoDatabaseBox .neoDatabase .databaseExplorer .actionButtons .iconButton img {
  height: 1rem;
}
.neoDatabaseBox .neoDatabase .databaseExplorer .contentList {
  width: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: stretch;
}
.neoDatabaseBox .neoDatabase .databaseExplorer .contentList .databaseItem {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  transition: all 0.3s;
  flex-direction: row;
  margin-bottom: 2rem;
  width: 100%;
}
.neoDatabaseBox .neoDatabase .databaseExplorer .contentList .databaseItem img {
  height: 3rem;
}
.neoDatabaseBox .neoDatabase .databaseExplorer .contentList .databaseItem .fileText {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1;
  justify-content: space-between;
}
.neoDatabaseBox .neoDatabase .databaseExplorer .contentList .databaseItem:hover {
  cursor: pointer;
  color: #ffa500;
}

.filePrice {
  color: #ffa500;
}

@font-face {
  font-family: "Lato";
  src: url(Lato/Lato-Regular.ttf);
}
.settingsBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  padding: 0 3vw;
  height: 100vh;
}
.settingsBox .settingsTable {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  background-color: #000000;
  border-radius: 10px;
}
.settingsBox .settingsTable .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1rem 2rem;
}
.settingsBox .settingsTable .row div, .settingsBox .settingsTable .row form {
  flex: 1;
  font-size: 1.25rem;
}
.settingsBox .settingsTable .row .standardEmail {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}
.settingsBox .settingsTable .row .searchInput {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.settingsBox .settingsTable .row input {
  width: 100%;
  min-width: 12.5rem;
  border-radius: 10px 0 0 10px;
  border: 0;
  padding: 0.6rem 2.5rem;
  box-sizing: border-box;
  transition-property: width;
}
.settingsBox .settingsTable .row .saveButton,
.settingsBox .settingsTable .row .editButton {
  width: 2.5rem;
  cursor: pointer;
}
.settingsBox .settingsTable .row .saveButton svg,
.settingsBox .settingsTable .row .editButton svg {
  transition: background-color 0.3s;
}
.settingsBox .settingsTable .row .editButton:hover svg,
.settingsBox .settingsTable .row .saveButton:hover svg {
  filter: drop-shadow(0 0 10px #ffa500);
}
.settingsBox .settingsTable .row .editButton:active svg,
.settingsBox .settingsTable .row .saveButton:active svg {
  filter: drop-shadow(0 0 10px #ef7402);
}
.settingsBox .settingsTable .row input,
.settingsBox .settingsTable .row .saveButton,
.settingsBox .settingsTable .row .editButton {
  border: none;
  outline: none;
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  background-color: #24252f;
}
.settingsBox .settingsTable .row .saveButton {
  border-radius: 0 10px 10px 0;
}
.settingsBox .settingsTable .row .editButton {
  border-radius: 10px;
  margin: -0.5rem 0;
  height: 2.5rem;
}
.settingsBox .settingsTable .row:not(:last-child) {
  border-bottom: solid 1px #ffffff;
}

@font-face {
  font-family: "Lato";
  src: url(Lato/Lato-Regular.ttf);
}
.interfaceMainContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0 3vw 3vh 3vw;
  width: calc(100% - 6vw);
}
.interfaceMainContainer .headerSection {
  font-size: 1.5rem;
}
.interfaceMainContainer .row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
.interfaceMainContainer .actionButtons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.5rem;
  padding: 1rem 0;
  width: 100%;
  gap: 1rem;
}

.interfaceMenuContainer {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  color: #ffffff;
  width: 100%;
}
.interfaceMenuContainer .menuColumn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background-color: #000000;
  width: calc(33% - 4rem);
  gap: 1rem;
  padding: 2rem;
  overflow-y: auto;
  height: calc(80vh - 15rem);
}
.interfaceMenuContainer .menuColumn .item {
  background-color: #24252f;
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 1ch;
  transition: all 300ms;
}
.interfaceMenuContainer .menuColumn .item .itemName {
  font-weight: 700;
}
.interfaceMenuContainer .menuColumn .item .subText {
  font-size: 0.9rem;
}
.interfaceMenuContainer .menuColumn .item:hover {
  background-color: #ffa500;
  cursor: pointer;
}
.interfaceMenuContainer .menuColumn .active {
  background-color: #ef7402;
}
.interfaceMenuContainer .menuColumn:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.interfaceMenuContainer .menuColumn:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.formField {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min-content;
  min-width: 10rem;
  padding: 0 1rem;
  border: none;
  outline: none;
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  background-color: #24252f;
  border-radius: 10px;
  width: 13rem;
}
.formField label {
  font-size: 0.75rem;
  padding-top: 0.25rem;
  word-wrap: normal;
}
.formField select {
  appearance: none;
  border: none;
  outline: none;
  color: #ffffff;
  background: url("dropdownIcon.svg") no-repeat right 0.3rem/1rem, #24252f;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  font-family: "Lato";
  cursor: pointer;
  text-align: justify;
  padding: 0.5rem 2rem 0.5rem 0;
  width: 100%;
}

.interfaceInfoContainer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background-color: #000000;
  border-radius: 10px;
  color: #ffffff;
  width: 100%;
}
.interfaceInfoContainer .columnSeparator {
  border: #ef7402 solid 1px;
}
.interfaceInfoContainer .menuColumn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1rem;
  padding: 2rem;
  overflow-y: auto;
  height: calc(80vh - 16rem);
  flex: 1;
}
.interfaceInfoContainer .menuColumn .imagesPanel {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  flex-wrap: nowrap;
  flex: 1;
}
.interfaceInfoContainer .menuColumn .imagesPanel img {
  height: 100%;
  border-radius: 10px;
}
.interfaceInfoContainer .menuColumn .log {
  background-color: #24252f;
  border-radius: 10px;
  padding: 1rem 2rem;
  flex: 1;
  overflow: auto;
  display: flex;
  flex-direction: column-reverse;
  overflow-anchor: auto !important;
}
.interfaceInfoContainer .menuColumn .log div {
  padding-bottom: 0.3rem;
  transform: translateZ(0);
}
.interfaceInfoContainer .commandsPanel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1rem;
  padding: 2rem;
  overflow-y: auto;
  height: calc(80vh - 16rem);
}
.interfaceInfoContainer .commandsPanel .primaryButton {
  width: 13rem;
}
.interfaceInfoContainer .rowContainer {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
}
.interfaceInfoContainer .progress {
  height: 1rem;
  border-radius: 7px;
  background-color: #24252f;
}
.interfaceInfoContainer .progress .progressContent {
  height: 100%;
  border-radius: 7px;
  background-color: #ffa500;
}

@font-face {
  font-family: "Lato";
  src: url(Lato/Lato-Regular.ttf);
}
.supportMainContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0 3vw 3vh 3vw;
  width: calc(100% - 6vw);
}
.supportMainContainer .headerSection {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.supportMainContainer .headerSection .tokens {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  border: none;
  outline: none;
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  background-color: #24252f;
  border-radius: 10px;
  padding: 1rem;
  width: 8rem;
}
.supportMainContainer .headerSection .tokens p {
  font-size: 1rem;
  margin: 0;
}
.supportMainContainer .headerSection .tokens b {
  color: #ffa500;
}
.supportMainContainer .actionButtons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.5rem;
  padding: 1rem 0;
  width: 100%;
  gap: 1rem;
}
.supportMainContainer .actionButtons a {
  text-decoration: none;
}
.supportMainContainer .actionButtons .primaryButton:hover {
  background-color: #ffa500;
}
.supportMainContainer .newServicesMainContainer {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  color: #ffffff;
  width: 100%;
}
.supportMainContainer .newServicesMainContainer .menuColumn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background-color: #000000;
  gap: 1rem;
  padding: 2rem;
  overflow-y: auto;
  height: calc(80vh - 15rem);
}
.supportMainContainer .newServicesMainContainer .menuColumn .item {
  background-color: #24252f;
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-direction: row;
  font-size: 1.5rem;
  gap: 1rem;
  transition: all 300ms;
}
.supportMainContainer .newServicesMainContainer .menuColumn .item img {
  height: 3rem;
  width: fit-content;
}
.supportMainContainer .newServicesMainContainer .menuColumn .item:hover {
  background-color: #ffa500;
  cursor: pointer;
}
.supportMainContainer .newServicesMainContainer .menuColumn .active {
  background-color: #ef7402;
}
.supportMainContainer .newServicesMainContainer .shortColumn {
  width: calc(30% - 4rem);
  min-width: 10rem;
}
.supportMainContainer .newServicesMainContainer .wideColumn {
  width: calc(70% - 4rem);
  min-width: 20rem;
}
.supportMainContainer .newServicesMainContainer .menuColumn:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.supportMainContainer .newServicesMainContainer .menuColumn:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.supportMainContainer .newServicesMainContainer .serviceName {
  font-size: 2rem;
  font-weight: 700;
}
.supportMainContainer .newServicesMainContainer .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-radius: 10px;
  border: solid 1px #ffffff;
  background-color: #000000;
  gap: 1rem;
}
.supportMainContainer .newServicesMainContainer .row div {
  max-width: calc(80% - 1rem);
  font-size: 1.25rem;
}
.supportMainContainer .newServicesMainContainer .row .fieldName {
  width: 20%;
  min-width: fit-content;
}
.supportMainContainer .newServicesMainContainer .row .actions {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  gap: 1rem;
  max-width: 30rem;
  /* Firefox */
}
.supportMainContainer .newServicesMainContainer .row .actions input {
  flex: 1;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  background-color: #24252f;
  min-width: 10rem;
  border-radius: 10px;
}
.supportMainContainer .newServicesMainContainer .row .actions input::-webkit-outer-spin-button,
.supportMainContainer .newServicesMainContainer .row .actions input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.supportMainContainer .newServicesMainContainer .row .actions input[type=number] {
  -moz-appearance: textfield;
}
.supportMainContainer .newServicesMainContainer .row .actions .flexDiv {
  display: flex;
  flex: 1;
}
.supportMainContainer .newServicesMainContainer .row .price {
  color: #ffa500;
}
.supportMainContainer .serviceItemsList {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  width: 100%;
  background-color: #000000;
  border-radius: 10px;
}
.supportMainContainer .serviceItemsList .serviceItem {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: stretch;
  transition: all 0.3s;
  padding: 1rem 2rem;
  gap: 1rem;
}
.supportMainContainer .serviceItemsList .serviceItem img {
  height: 2rem;
  width: fit-content;
}
.supportMainContainer .serviceItemsList .serviceItem .itemType {
  min-width: 10rem;
  font-size: 2rem;
  font-weight: 700;
}
.supportMainContainer .serviceItemsList .serviceItem .itemInfo {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1ch;
}
.supportMainContainer .serviceItemsList .serviceItem .itemInfo .itemHeader {
  font-weight: 700;
  font-size: 1.25rem;
}
.supportMainContainer .serviceItemsList .serviceItem .spacer {
  flex: 1;
}
.supportMainContainer .serviceItemsList .serviceItem .commentsIcon {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  font-size: 0.75rem;
  color: #ffa500;
}
.supportMainContainer .serviceItemsList .serviceItem:not(:last-child) {
  border-bottom: solid 1px #ffffff;
}
.supportMainContainer .serviceItemsList .serviceItem:hover {
  cursor: pointer;
  color: #ffa500;
}
.supportMainContainer .serviceItemMainContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: stretch;
  gap: 1rem;
  width: 100%;
}
.supportMainContainer .serviceItemMainContainer .serviceName {
  font-size: 2rem;
  font-weight: 700;
}
.supportMainContainer .serviceItemMainContainer .serviceItemInfo {
  display: flex;
  flex-direction: row;
  gap: 0;
  width: 100%;
  max-height: calc(80vh - 15rem);
  background-color: #000000;
  border-radius: 10px;
}
.supportMainContainer .serviceItemMainContainer .serviceItemInfo .infoTable {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  flex: 1;
}
.supportMainContainer .serviceItemMainContainer .serviceItemInfo .infoTable .row {
  padding: 1rem 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.supportMainContainer .serviceItemMainContainer .serviceItemInfo .infoTable .row div {
  flex: 1;
  font-size: 1.25rem;
}
.supportMainContainer .serviceItemMainContainer .serviceItemInfo .infoTable .row .actions {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  gap: 1rem;
  max-width: 30rem;
}
.supportMainContainer .serviceItemMainContainer .serviceItemInfo .infoTable .row:not(:last-child) {
  border-bottom: solid 1px #ffffff;
}
.supportMainContainer .serviceItemMainContainer .serviceItemInfo .columnSeparator {
  border: #ef7402 solid 1px;
}
.supportMainContainer .serviceItemMainContainer .serviceItemInfo .comments {
  display: flex;
  flex-direction: column;
  width: 30%;
  padding: 1rem;
}
.supportMainContainer .serviceItemMainContainer .serviceItemInfo .comments .commentsContainer {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  flex: 1;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 1rem;
}
.supportMainContainer .serviceItemMainContainer .serviceItemInfo .comments .commentsContainer .comment {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #68696e;
  border-radius: 10px;
  width: 80%;
  padding: 0.5rem 1rem;
}
.supportMainContainer .serviceItemMainContainer .serviceItemInfo .comments .commentsContainer .comment .header {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.supportMainContainer .serviceItemMainContainer .serviceItemInfo .comments .commentsContainer .comment .info {
  font-size: 0.75rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.supportMainContainer .serviceItemMainContainer .serviceItemInfo .comments .commentsContainer .otherUser {
  background: #24252f;
  align-self: flex-start;
}
.supportMainContainer .serviceItemMainContainer .serviceItemInfo .comments .commentsContainer .notSeen {
  border: #ef7402 solid 2px;
}
.supportMainContainer .serviceItemMainContainer .serviceItemInfo .comments .commentsContainer .notSeen .header {
  color: #ef7402;
}
.supportMainContainer .serviceItemMainContainer .serviceItemInfo .comments .commentInput {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.supportMainContainer .serviceItemMainContainer .serviceItemInfo .comments .commentInput input {
  width: 100%;
  min-width: 12.5rem;
  border: 0;
  padding: 0.6rem 1.25rem;
  border-radius: 10px 0 0 10px;
}
.supportMainContainer .serviceItemMainContainer .serviceItemInfo .comments .commentInput input, .supportMainContainer .serviceItemMainContainer .serviceItemInfo .comments .commentInput .sendButton {
  border: none;
  outline: none;
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  background-color: #24252f;
}
.supportMainContainer .serviceItemMainContainer .serviceItemInfo .comments .commentInput .sendButton {
  border-radius: 0 10px 10px 0;
  width: 4rem;
  cursor: pointer;
}
.supportMainContainer .serviceItemMainContainer .serviceItemInfo .comments .commentInput .sendButton svg {
  transition: all 0.3s;
}
.supportMainContainer .serviceItemMainContainer .serviceItemInfo .comments .commentInput .sendButton:hover svg {
  color: #ffa500;
}

.hexEditorBox {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem 1rem 1rem;
  box-sizing: border-box;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.hexEditorContent {
  background: #1e1e1e;
  border-radius: 8px;
  padding: 0 1rem 1rem 1rem;
  box-sizing: border-box;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #252525;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.search-bar .search-mode-toggle {
  display: flex;
  gap: 0;
  background: #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
}
.search-bar .search-mode-toggle .mode-btn {
  padding: 0.4rem 0.75rem;
  border: none;
  background: transparent;
  color: #888;
  cursor: pointer;
  font-size: 0.85em;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.search-bar .search-mode-toggle .mode-btn:hover {
  color: #ccc;
}
.search-bar .search-mode-toggle .mode-btn.active {
  background: #ff8c00;
  color: #1a1a1a;
}
.search-bar .search-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.search-bar .search-input-wrapper .search-input {
  width: 100%;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 4px;
  color: #e0e0e0;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
}
.search-bar .search-input-wrapper .search-input:focus {
  outline: none;
  border-color: #ff8c00;
}
.search-bar .search-input-wrapper .search-input::placeholder {
  color: #555;
}
.search-bar .search-input-wrapper .clear-search {
  position: absolute;
  right: 8px;
  padding: 0.2rem;
  border: none;
  background: transparent;
  color: #666;
  cursor: pointer;
  font-size: 0.8em;
}
.search-bar .search-input-wrapper .clear-search:hover {
  color: #ff8c00;
}
.search-bar .search-btn {
  padding: 0.5rem 1rem;
  background: #ff8c00;
  border: none;
  border-radius: 4px;
  color: #1a1a1a;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.15s ease;
}
.search-bar .search-btn:hover:not(:disabled) {
  background: #ff9f33;
}
.search-bar .search-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.search-bar .search-results-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0.5rem;
  border-left: 1px solid #444;
}
.search-bar .search-results-nav .results-count {
  color: #4ec9b0;
  font-family: "Courier New", monospace;
  font-size: 0.85em;
  min-width: 60px;
  text-align: center;
}
.search-bar .search-results-nav .nav-btn {
  padding: 0.3rem 0.5rem;
  background: #333;
  border: none;
  border-radius: 3px;
  color: #888;
  cursor: pointer;
  transition: all 0.15s ease;
}
.search-bar .search-results-nav .nav-btn:hover:not(:disabled) {
  background: #444;
  color: #4ec9b0;
}
.search-bar .search-results-nav .nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.search-bar .no-results {
  color: #cd5c5c;
  font-size: 0.85em;
  padding-left: 0.5rem;
  border-left: 1px solid #444;
}

.global-search-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: #252525;
  border-radius: 6px;
  margin-bottom: 1rem;
  border: 1px solid #ff8c00;
}
.global-search-bar .search-mode-toggle {
  display: flex;
  gap: 0;
  background: #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
}
.global-search-bar .search-mode-toggle .mode-btn {
  padding: 0.4rem 0.75rem;
  border: none;
  background: transparent;
  color: #888;
  cursor: pointer;
  font-size: 0.85em;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.global-search-bar .search-mode-toggle .mode-btn:hover {
  color: #ccc;
}
.global-search-bar .search-mode-toggle .mode-btn.active {
  background: #ff8c00;
  color: #1a1a1a;
}
.global-search-bar .search-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.global-search-bar .search-input-wrapper .search-input {
  width: 100%;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 4px;
  color: #e0e0e0;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
}
.global-search-bar .search-input-wrapper .search-input:focus {
  outline: none;
  border-color: #ff8c00;
}
.global-search-bar .search-input-wrapper .search-input::placeholder {
  color: #555;
}
.global-search-bar .search-input-wrapper .clear-search {
  position: absolute;
  right: 8px;
  padding: 0.2rem;
  border: none;
  background: transparent;
  color: #666;
  cursor: pointer;
  font-size: 0.8em;
}
.global-search-bar .search-input-wrapper .clear-search:hover {
  color: #ff8c00;
}
.global-search-bar .search-btn {
  padding: 0.5rem 1rem;
  background: #ff8c00;
  border: none;
  border-radius: 4px;
  color: #1a1a1a;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.15s ease;
}
.global-search-bar .search-btn:hover:not(:disabled) {
  background: #ff9f33;
}
.global-search-bar .search-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.global-search-bar .search-results-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0.5rem;
  border-left: 1px solid #444;
}
.global-search-bar .search-results-nav .results-count {
  color: #4ec9b0;
  font-family: "Courier New", monospace;
  font-size: 0.85em;
  min-width: 60px;
  text-align: center;
}
.global-search-bar .search-results-nav .nav-btn {
  padding: 0.3rem 0.5rem;
  background: #333;
  border: none;
  border-radius: 3px;
  color: #888;
  cursor: pointer;
  transition: all 0.15s ease;
}
.global-search-bar .search-results-nav .nav-btn:hover:not(:disabled) {
  background: #444;
  color: #4ec9b0;
}
.global-search-bar .search-results-nav .nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.global-search-bar .no-results {
  color: #cd5c5c;
  font-size: 0.85em;
  padding-left: 0.5rem;
  border-left: 1px solid #444;
}
.global-search-bar .search-mode-switch {
  padding: 0.4rem 0.6rem;
  background: #333;
  border: none;
  border-radius: 4px;
  color: #888;
  cursor: pointer;
  transition: all 0.15s ease;
  margin-left: auto;
}
.global-search-bar .search-mode-switch:hover {
  background: #444;
  color: #ff8c00;
}
.global-search-bar .search-mode-switch.active {
  background: #ff8c00;
  color: #1a1a1a;
}
.global-search-bar.with-replace {
  flex-wrap: wrap;
}
.global-search-bar .search-replace-inputs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 200px;
}
.global-search-bar .replace-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.global-search-bar .replace-input-wrapper .search-input {
  width: 100%;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  background: #1a1a1a;
  border: 1px solid #4ec9b0;
  border-radius: 4px;
  color: #e0e0e0;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
}
.global-search-bar .replace-input-wrapper .search-input:focus {
  outline: none;
  border-color: #6fd9c0;
}
.global-search-bar .replace-input-wrapper .search-input::placeholder {
  color: #555;
}
.global-search-bar .replace-actions {
  display: flex;
  gap: 0.25rem;
  padding-left: 0.5rem;
  border-left: 1px solid #444;
}
.global-search-bar .replace-btn {
  padding: 0.4rem 0.6rem;
  background: #4ec9b0;
  border: none;
  border-radius: 4px;
  color: #1a1a1a;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.15s ease;
}
.global-search-bar .replace-btn:hover:not(:disabled) {
  background: #6fd9c0;
}
.global-search-bar .replace-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.global-search-bar .replace-btn.replace-all {
  background: #ff8c00;
}
.global-search-bar .replace-btn.replace-all:hover:not(:disabled) {
  background: #ff9f33;
}

.panel-search-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #252525;
  border-radius: 4px;
  margin-top: -0.5rem;
}
.panel-search-bar .search-mode-toggle {
  display: flex;
  gap: 0;
  background: #1a1a1a;
  border-radius: 3px;
  overflow: hidden;
}
.panel-search-bar .search-mode-toggle .mode-btn {
  padding: 0.3rem 0.5rem;
  border: none;
  background: transparent;
  color: #888;
  cursor: pointer;
  font-size: 0.8em;
  transition: all 0.15s ease;
}
.panel-search-bar .search-mode-toggle .mode-btn:hover {
  color: #ccc;
}
.panel-search-bar .search-mode-toggle .mode-btn.active {
  background: #ff8c00;
  color: #1a1a1a;
}
.panel-search-bar .search-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}
.panel-search-bar .search-input-wrapper .search-input {
  width: 100%;
  padding: 0.35rem 1.8rem 0.35rem 0.5rem;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 3px;
  color: #e0e0e0;
  font-family: "Courier New", monospace;
  font-size: 0.8em;
}
.panel-search-bar .search-input-wrapper .search-input:focus {
  outline: none;
  border-color: #ff8c00;
}
.panel-search-bar .search-input-wrapper .search-input::placeholder {
  color: #555;
}
.panel-search-bar .search-input-wrapper .clear-search {
  position: absolute;
  right: 6px;
  padding: 0.15rem;
  border: none;
  background: transparent;
  color: #666;
  cursor: pointer;
  font-size: 0.7em;
}
.panel-search-bar .search-input-wrapper .clear-search:hover {
  color: #ff8c00;
}
.panel-search-bar .search-btn {
  padding: 0.35rem 0.6rem;
  background: #ff8c00;
  border: none;
  border-radius: 3px;
  color: #1a1a1a;
  font-weight: bold;
  cursor: pointer;
  font-size: 0.8em;
  transition: background 0.15s ease;
}
.panel-search-bar .search-btn:hover:not(:disabled) {
  background: #ff9f33;
}
.panel-search-bar .search-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.panel-search-bar .search-results-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding-left: 0.4rem;
  border-left: 1px solid #444;
}
.panel-search-bar .search-results-nav .results-count {
  color: #4ec9b0;
  font-family: "Courier New", monospace;
  font-size: 0.75em;
  min-width: 40px;
  text-align: center;
}
.panel-search-bar .search-results-nav .nav-btn {
  padding: 0.2rem 0.4rem;
  background: #333;
  border: none;
  border-radius: 2px;
  color: #888;
  cursor: pointer;
  font-size: 0.75em;
  transition: all 0.15s ease;
}
.panel-search-bar .search-results-nav .nav-btn:hover:not(:disabled) {
  background: #444;
  color: #4ec9b0;
}
.panel-search-bar .search-results-nav .nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.panel-search-bar .no-results {
  color: #cd5c5c;
  font-size: 0.75em;
  padding-left: 0.4rem;
  border-left: 1px solid #444;
}
.panel-search-bar.with-replace {
  flex-wrap: wrap;
}
.panel-search-bar .search-replace-inputs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 120px;
}
.panel-search-bar .replace-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.panel-search-bar .replace-input-wrapper .search-input {
  width: 100%;
  padding: 0.35rem 1rem 0.35rem 0.5rem;
  background: #1a1a1a;
  border: 1px solid #4ec9b0;
  border-radius: 3px;
  color: #e0e0e0;
  font-family: "Courier New", monospace;
  font-size: 0.8em;
}
.panel-search-bar .replace-input-wrapper .search-input:focus {
  outline: none;
  border-color: #6fd9c0;
}
.panel-search-bar .replace-input-wrapper .search-input::placeholder {
  color: #555;
}
.panel-search-bar .replace-actions {
  display: flex;
  gap: 0.2rem;
  padding-left: 0.4rem;
  border-left: 1px solid #444;
}
.panel-search-bar .replace-btn {
  padding: 0.3rem 0.5rem;
  background: #4ec9b0;
  border: none;
  border-radius: 3px;
  color: #1a1a1a;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.75em;
  transition: all 0.15s ease;
}
.panel-search-bar .replace-btn:hover:not(:disabled) {
  background: #6fd9c0;
}
.panel-search-bar .replace-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.panel-search-bar .replace-btn.replace-all {
  background: #ff8c00;
}
.panel-search-bar .replace-btn.replace-all:hover:not(:disabled) {
  background: #ff9f33;
}
.panel-search-bar .search-mode-switch {
  padding: 0.3rem 0.5rem;
  background: #333;
  border: none;
  border-radius: 3px;
  color: #888;
  cursor: pointer;
  font-size: 0.75em;
  transition: all 0.15s ease;
}
.panel-search-bar .search-mode-switch:hover {
  background: #444;
  color: #ff8c00;
}
.panel-search-bar .search-mode-switch.active {
  background: #ff8c00;
  color: #1a1a1a;
}

.hex-panel {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  min-height: 0;
}
.hex-panel .hex-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  background: #252525;
  border-radius: 4px;
  min-height: 36px;
}
.hex-panel .hex-panel-header .file-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex: 1;
}
.hex-panel .hex-panel-header .file-info .filename {
  color: #ff8c00;
  font-weight: 600;
  font-size: 0.85em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hex-panel .hex-panel-header .file-info .filesize {
  color: #666;
  font-size: 0.75em;
  white-space: nowrap;
  flex-shrink: 0;
}
.hex-panel .hex-panel-header .file-info .modifications-badge {
  background: rgba(78, 201, 176, 0.2);
  color: #4ec9b0;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-size: 0.7em;
  font-weight: bold;
  flex-shrink: 0;
}
.hex-panel .hex-panel-header .panel-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.hex-panel .hex-panel-header .icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: #333;
  color: #888;
  cursor: pointer;
  font-size: 0.8em;
  transition: all 0.15s ease;
  position: relative;
}
.hex-panel .hex-panel-header .icon-btn:hover:not(:disabled) {
  background: #444;
  color: #ff8c00;
}
.hex-panel .hex-panel-header .icon-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.hex-panel .hex-panel-header .icon-btn .action-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #4ec9b0;
  color: #1a1a1a;
  font-size: 0.6em;
  font-weight: bold;
  padding: 1px 3px;
  border-radius: 6px;
  min-width: 12px;
  text-align: center;
  line-height: 1.2;
}
.hex-panel .hex-panel-header .icon-btn:disabled .action-count {
  display: none;
}
.hex-panel .hex-panel-header .icon-btn.swap-btn:hover:not(:disabled) {
  background: rgba(78, 201, 176, 0.2);
  color: #4ec9b0;
}
.hex-panel .hex-panel-header .icon-btn.close-btn:hover:not(:disabled) {
  background: rgba(205, 92, 92, 0.2);
  color: #cd5c5c;
}
.hex-panel .hex-panel-header .action-divider {
  width: 1px;
  height: 18px;
  background: #444;
  margin: 0 0.15rem;
}

.file-dropzone {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 200px;
  background: #0d0d0d;
  border: 2px dashed #444;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.file-dropzone:hover {
  border-color: #ff8c00;
  background: rgba(255, 140, 0, 0.05);
}
.file-dropzone.drag-over {
  border-color: #ff8c00;
  background: rgba(255, 140, 0, 0.1);
  border-style: solid;
}
.file-dropzone .dropzone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 2rem;
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.file-dropzone .dropzone-content i {
  font-size: 3rem;
  color: #444;
  transition: color 0.2s ease;
}
.file-dropzone .dropzone-content .dropzone-title {
  font-size: 1.2em;
  color: #858585;
  font-weight: bold;
}
.file-dropzone .dropzone-content .dropzone-subtitle {
  font-size: 0.9em;
  color: #555;
}
.file-dropzone:hover .dropzone-content i, .file-dropzone.drag-over .dropzone-content i {
  color: #ff8c00;
}
.file-dropzone .dropzone-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  cursor: pointer !important;
  z-index: 2 !important;
}

.toolbar-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.toolbar-bar .toolbar-btn {
  padding: 0.35rem 0.6rem;
  background: #252525;
  border: 1px solid #333;
  border-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 0.8em;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.toolbar-bar .toolbar-btn:hover {
  border-color: #ff8c00;
  color: #ff8c00;
  background: #2a2a2a;
}

.diff-indicator {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8em;
}
.diff-indicator.has-diffs {
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
}
.diff-indicator.has-diffs i {
  color: #ffa500;
}
.diff-indicator.has-diffs .diff-count {
  font-weight: bold;
}
.diff-indicator.has-diffs .nav-btn {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
}
.diff-indicator.has-diffs .nav-btn:hover:not(:disabled) {
  background: rgba(255, 215, 0, 0.35);
}
.diff-indicator.has-diffs .batch-pos {
  color: #ffd700;
}
.diff-indicator.no-diffs {
  background: rgba(78, 201, 176, 0.15);
  color: #4ec9b0;
}
.diff-indicator.no-diffs i {
  color: #4ec9b0;
}
.diff-indicator .nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.7em;
  transition: all 0.15s ease;
}
.diff-indicator .nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.diff-indicator .batch-pos {
  font-family: "Courier New", monospace;
  font-size: 0.85em;
  min-width: 30px;
  text-align: center;
}

.hex-views-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  flex: 1;
  min-height: 0;
}
.hex-views-container .hex-view-slot {
  min-width: 0;
  min-height: 0;
  overflow-x: auto;
  display: flex;
  flex-direction: column;
}

.hex-view-wrapper {
  background: #0d0d0d;
  border-radius: 4px;
  border: 1px solid #333;
  overflow-x: auto;
  overflow-y: hidden;
  font-family: "Courier New", "Consolas", monospace;
  font-size: 13px;
  --col-offset: 90px;
  --col-byte: 32px;
  --col-ascii: 180px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.hex-header {
  display: grid;
  grid-template-columns: var(--col-offset) repeat(16, var(--col-byte)) var(--col-ascii);
  width: max-content;
  min-width: 100%;
  background: rgba(255, 140, 0, 0.15);
  border-bottom: 2px solid #ff8c00;
  gap: 0;
}
.hex-header .hex-cell {
  padding: 10px 8px;
  font-weight: bold;
  color: #ff8c00;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hex-header .hex-cell.offset {
  padding-left: 12px;
}
.hex-header .hex-cell.ascii {
  padding-left: 12px;
}

.hex-row {
  display: grid;
  grid-template-columns: var(--col-offset) repeat(16, var(--col-byte)) var(--col-ascii);
  width: max-content;
  min-width: 100%;
  height: 22px;
  gap: 0;
}
.hex-row:hover {
  background: rgba(255, 140, 0, 0.1);
}
.hex-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}
.hex-row:nth-child(even):hover {
  background: rgba(255, 140, 0, 0.1);
}
.hex-row .hex-cell {
  padding: 0 8px;
  height: 22px;
  line-height: 22px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-variant-numeric: tabular-nums;
}
.hex-row .hex-cell.offset {
  color: #858585;
  user-select: none;
  padding-left: 12px;
}
.hex-row .hex-cell.hex-byte {
  color: #d4d4d4;
  cursor: pointer;
  transition: background 0.15s ease;
}
.hex-row .hex-cell.hex-byte:hover:not(.empty) {
  background: rgba(255, 140, 0, 0.3);
}
.hex-row .hex-cell.hex-byte.modified {
  color: #4ec9b0;
  font-weight: bold;
}
.hex-row .hex-cell.hex-byte.difference {
  background: rgba(255, 215, 0, 0.3);
  outline: 1px solid rgba(255, 215, 0, 0.5);
  outline-offset: -1px;
}
.hex-row .hex-cell.hex-byte.batch-pulse {
  animation: diffPulse 1s ease-in-out infinite;
}
.hex-row .hex-cell.hex-byte.empty {
  cursor: default;
}
.hex-row .hex-cell.hex-byte.editing {
  background: #2d2d2d;
  color: #fff;
  border: 2px solid #ff8c00;
  outline: none;
  text-align: left;
  padding: 0 6px;
  text-transform: uppercase;
  cursor: text;
}
.hex-row .hex-cell.ascii {
  color: #6a9955;
  padding-left: 12px;
  display: flex;
  gap: 0;
}
.hex-row .hex-cell.ascii .ascii-char {
  cursor: pointer;
  padding: 0 1px;
  border-radius: 2px;
  transition: background 0.1s ease;
}
.hex-row .hex-cell.ascii .ascii-char:hover {
  background: rgba(78, 201, 176, 0.2);
}
.hex-row .hex-cell.ascii .ascii-char.modified {
  color: #dcdcaa;
}
.hex-row .hex-cell.ascii .ascii-char.selected {
  background: rgba(78, 201, 176, 0.3);
}
.hex-row .hex-cell.ascii .ascii-char.editing {
  width: 14px;
  padding: 0 2px;
  background: #1a1a1a;
  border: 1px solid #4ec9b0;
  border-radius: 2px;
  color: #4ec9b0;
  font-family: inherit;
  font-size: inherit;
  text-align: center;
  outline: none;
}

.hex-scroll-container {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  background: #0d0d0d;
}
.hex-scroll-container::-webkit-scrollbar {
  width: 12px;
}
.hex-scroll-container::-webkit-scrollbar-track {
  background: #1e1e1e;
}
.hex-scroll-container::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 6px;
}
.hex-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #666;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: #1e1e1e;
  border: 1px solid #ff8c00;
  border-radius: 8px;
  min-width: 400px;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.modal-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #333;
  font-size: 1.2em;
  font-weight: bold;
  color: #ff8c00;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.modal-header i {
  font-size: 1.3em;
}

.modal-body {
  padding: 1.5rem;
  color: #d4d4d4;
}
.modal-body p {
  margin: 0.5rem 0;
}
.modal-body .warning-text {
  color: #ff8c00;
  font-weight: bold;
  margin-top: 1rem;
}

.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #333;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.goto-modal .goto-input-wrapper {
  display: flex;
  align-items: center;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 4px;
  margin-top: 1rem;
}
.goto-modal .goto-input-wrapper:focus-within {
  border-color: #ff8c00;
}
.goto-modal .goto-input-wrapper .hex-prefix {
  padding: 0.6rem 0.5rem 0.6rem 0.75rem;
  color: #666;
  font-family: "Courier New", monospace;
  font-size: 1em;
}
.goto-modal .goto-input-wrapper .goto-input {
  flex: 1;
  padding: 0.6rem 0.75rem 0.6rem 0;
  background: transparent;
  border: none;
  color: #e0e0e0;
  font-family: "Courier New", monospace;
  font-size: 1em;
  text-transform: uppercase;
}
.goto-modal .goto-input-wrapper .goto-input:focus {
  outline: none;
}
.goto-modal .goto-input-wrapper .goto-input::placeholder {
  color: #444;
}
.goto-modal .error-text {
  color: #cd5c5c;
  font-size: 0.9em;
  margin-top: 0.75rem;
}

.hex-cell.hex-byte.selected {
  background: rgba(100, 149, 237, 0.4) !important;
  outline: 1px solid rgba(100, 149, 237, 0.7);
  outline-offset: -1px;
}

.checksum-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border-top: 2px solid #ff8c00;
  transform: translateY(calc(100% - 50px));
  transition: transform 0.3s ease;
  z-index: 100;
  max-height: 350px;
}
.checksum-drawer.open {
  transform: translateY(0);
}
.checksum-drawer .drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 140, 0, 0.1);
  cursor: pointer;
  user-select: none;
  height: 50px;
  box-sizing: border-box;
}
.checksum-drawer .drawer-header:hover {
  background: rgba(255, 140, 0, 0.15);
}
.checksum-drawer .drawer-header .drawer-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ff8c00;
  font-weight: bold;
}
.checksum-drawer .drawer-header .drawer-title i {
  font-size: 1.1em;
}
.checksum-drawer .drawer-header .drawer-title .drawer-range-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  font-family: "Courier New", monospace;
  font-size: 0.85em;
  font-weight: normal;
  color: #858585;
}
.checksum-drawer .drawer-header .drawer-title .drawer-range-controls .range-field {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  background: #252525;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}
.checksum-drawer .drawer-header .drawer-title .drawer-range-controls .range-field .range-label {
  color: #666;
  font-size: 0.85em;
  margin-right: 0.3rem;
}
.checksum-drawer .drawer-header .drawer-title .drawer-range-controls .range-field .range-value {
  color: #4ec9b0;
  cursor: pointer;
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
  transition: background 0.15s ease;
}
.checksum-drawer .drawer-header .drawer-title .drawer-range-controls .range-field .range-value:hover {
  background: rgba(78, 201, 176, 0.15);
}
.checksum-drawer .drawer-header .drawer-title .drawer-range-controls .range-field .hex-prefix {
  color: #666;
}
.checksum-drawer .drawer-header .drawer-title .drawer-range-controls .range-field .range-input {
  width: 70px;
  padding: 0.15rem 0.3rem;
  background: #1a1a1a;
  border: 1px solid #444;
  border-radius: 3px;
  color: #4ec9b0;
  font-family: inherit;
  font-size: inherit;
  text-transform: uppercase;
}
.checksum-drawer .drawer-header .drawer-title .drawer-range-controls .range-field .range-input:focus {
  outline: none;
  border-color: #4ec9b0;
}
.checksum-drawer .drawer-header .drawer-title .drawer-range-controls .arrow-btn {
  padding: 0.15rem 0.3rem;
  border: none;
  border-radius: 3px;
  background: #333;
  color: #888;
  cursor: pointer;
  font-size: 0.75em;
  transition: all 0.15s ease;
  line-height: 1;
}
.checksum-drawer .drawer-header .drawer-title .drawer-range-controls .arrow-btn:hover {
  background: #444;
  color: #4ec9b0;
}
.checksum-drawer .drawer-header .drawer-title .drawer-range-controls .arrow-btn:active {
  background: #555;
}
.checksum-drawer .drawer-header .drawer-title .drawer-range-controls .range-separator {
  color: #555;
  margin: 0 0.2rem;
}
.checksum-drawer .drawer-header .drawer-title .drawer-range-controls .range-bytes {
  color: #666;
  font-size: 0.9em;
  margin-left: 0.5rem;
}
.checksum-drawer .drawer-header .drawer-title .drawer-range-controls .range-btn {
  padding: 0.2rem 0.4rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.9em;
  transition: background 0.15s ease;
  margin-left: 0.3rem;
}
.checksum-drawer .drawer-header .drawer-title .drawer-range-controls .range-btn.apply {
  background: #2d5a3d;
  color: #4ec9b0;
}
.checksum-drawer .drawer-header .drawer-title .drawer-range-controls .range-btn.apply:hover {
  background: #3d7a4d;
}
.checksum-drawer .drawer-header .drawer-title .drawer-range-controls .range-btn.cancel {
  background: #5a2d2d;
  color: #cd5c5c;
}
.checksum-drawer .drawer-header .drawer-title .drawer-range-controls .range-btn.cancel:hover {
  background: #7a3d3d;
}
.checksum-drawer .drawer-header .drawer-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.checksum-drawer .drawer-header .drawer-actions i {
  color: #858585;
  transition: transform 0.3s ease;
}
.checksum-drawer .drawer-content {
  max-height: 300px;
  overflow-y: auto;
  background: #0d0d0d;
}
.checksum-drawer .drawer-content::-webkit-scrollbar {
  width: 10px;
}
.checksum-drawer .drawer-content::-webkit-scrollbar-track {
  background: #1e1e1e;
}
.checksum-drawer .drawer-content::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 5px;
}
.checksum-drawer .drawer-content::-webkit-scrollbar-thumb:hover {
  background: #666;
}
.checksum-drawer .drawer-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem;
  color: #555;
}
.checksum-drawer .drawer-empty i {
  font-size: 1.5em;
}
.checksum-drawer .checksum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 1px;
  background: #333;
}
.checksum-drawer .checksum-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1.5rem;
  background: #1e1e1e;
  transition: background 0.15s ease;
}
.checksum-drawer .checksum-item:hover {
  background: #252525;
}
.checksum-drawer .checksum-item.error {
  background: rgba(139, 69, 69, 0.15);
}
.checksum-drawer .checksum-item.error .checksum-name {
  color: #cd5c5c;
}
.checksum-drawer .checksum-item.error .checksum-value {
  color: #8b4545;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.checksum-drawer .checksum-item.error .checksum-value i {
  color: #cd5c5c;
}
.checksum-drawer .checksum-item .checksum-name {
  color: #858585;
  font-size: 0.85em;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.checksum-drawer .checksum-item .checksum-value {
  color: #4ec9b0;
  font-family: "Courier New", monospace;
  font-weight: bold;
  margin-left: 1rem;
  font-size: 0.95em;
}
.checksum-drawer .checksum-comparison-grid {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
}
.checksum-drawer .checksum-comparison-grid .checksum-header {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(150px, 2fr) minmax(150px, 2fr);
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  background: #0d0d0d;
  border-bottom: 2px solid #ff8c00;
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 20;
}
.checksum-drawer .checksum-comparison-grid .checksum-header .checksum-algorithm-header {
  color: #ff8c00;
  font-size: 0.85em;
}
.checksum-drawer .checksum-comparison-grid .checksum-header .checksum-file-header {
  color: #4ec9b0;
  font-size: 0.8em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.checksum-drawer .checksum-comparison-grid .checksum-comparison-row {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(150px, 2fr) minmax(150px, 2fr);
  gap: 1rem;
  padding: 0.6rem 1.5rem;
  background: #1e1e1e;
  transition: background 0.15s ease;
  border-bottom: 1px solid #252525;
}
.checksum-drawer .checksum-comparison-grid .checksum-comparison-row:hover {
  background: #252525;
}
.checksum-drawer .checksum-comparison-grid .checksum-comparison-row.error {
  background: rgba(139, 69, 69, 0.15);
}
.checksum-drawer .checksum-comparison-grid .checksum-comparison-row.error .checksum-name {
  color: #cd5c5c;
}
.checksum-drawer .checksum-comparison-grid .checksum-comparison-row.error .checksum-value {
  color: #8b4545;
}
.checksum-drawer .checksum-comparison-grid .checksum-comparison-row .checksum-name {
  color: #858585;
  font-size: 0.85em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.checksum-drawer .checksum-comparison-grid .checksum-comparison-row .checksum-value {
  color: #4ec9b0;
  font-family: "Courier New", monospace;
  font-weight: bold;
  font-size: 0.9em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.checksum-drawer .checksum-comparison-grid .checksum-comparison-row .checksum-value.match {
  color: #90ee90;
  background: rgba(144, 238, 144, 0.1);
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
}

@keyframes diffPulse {
  0%, 100% {
    background: rgba(255, 215, 0, 0.3);
    box-shadow: none;
  }
  50% {
    background: rgba(255, 215, 0, 0.7);
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
  }
}
.can-view-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: Consolas, monospace;
  font-size: 12px;
}

.can-header {
  display: grid;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 140, 0, 0.15);
  border-bottom: 2px solid #ff8c00;
}

.can-scroll-container {
  flex: 1;
  overflow: auto;
  width: 100%;
}

.can-row {
  display: grid;
  width: 100%;
  align-items: center;
  min-height: 22px;
  user-select: none;
}

.can-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

.can-row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.01);
}

.can-cell {
  padding: 6px 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #d7d7d7;
  user-select: none;
}

.can-header .can-cell {
  font-weight: bold;
  color: #ff8c00;
  user-select: none;
}

.can-cell.center {
  text-align: center;
}

.can-cell.right {
  text-align: right;
}

.can-cell.left {
  text-align: left;
}

.can-byte.diff {
  background: rgba(255, 200, 0, 0.25);
  border-radius: 3px;
  padding: 1px 2px;
}

.can-ascii {
  font-family: Consolas, monospace;
  letter-spacing: 0.5px;
}

.can-scroll-container::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}

.can-scroll-container::-webkit-scrollbar-thumb {
  background: rgba(255, 140, 0, 0.4);
  border-radius: 5px;
}

.can-scroll-container::-webkit-scrollbar-track {
  background: transparent;
}

.can-row {
  display: grid;
  grid-template-columns: var(--col-id) var(--col-dlc) var(--col-data) var(--col-period) var(--col-count) var(--col-ascii);
  width: 100%; /* FIX */
  min-width: 0; /* FIX */
  height: 22px;
  gap: 0;
}
.can-row:hover {
  background: rgba(255, 140, 0, 0.1);
}
.can-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}
.can-row:nth-child(even):hover {
  background: rgba(255, 140, 0, 0.1);
}
.can-row .can-cell {
  padding: 0 8px;
  height: 22px;
  line-height: 22px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-variant-numeric: tabular-nums;
}
.can-row .can-cell.can-id {
  color: #858585;
  user-select: none;
  text-align: right;
}
.can-row .can-cell.can-dlc {
  color: #d4d4d4;
  user-select: none;
  padding-left: 12px;
  text-align: center;
}
.can-row .can-cell.can-data {
  color: #d4d4d4;
  user-select: none;
  padding-left: 12px;
}
.can-row .can-cell.can-period {
  color: #d4d4d4;
  user-select: none;
  padding-left: 12px;
  text-align: right;
}
.can-row .can-cell.can-count {
  color: #d4d4d4;
  user-select: none;
  padding-left: 12px;
  text-align: right;
}
.can-row .can-cell.can-ascii {
  color: #d4d4d4;
  user-select: none;
  padding-left: 12px;
  text-align: left;
}
.can-row .can-cell .can-byte {
  padding: 0 2px;
  border-radius: 2px;
  transition: background 0.2s ease;
}
.can-row .can-cell .can-byte.diff {
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
}

.can-view-wrapper {
  background: #0d0d0d;
  border-radius: 4px;
  border: 1px solid #333;
  overflow-x: hidden;
  overflow-y: hidden;
  font-family: "Courier New", "Consolas", monospace;
  font-size: 13px;
  --col-id: 90px;
  --col-dlc: 45px;
  --col-data: 200px;
  --col-period: 70px;
  --col-count: 60px;
  --col-byte: 32px;
  --col-ascii: 180px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
}

.can-scroll-container {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  background: #0d0d0d;
}
.can-scroll-container::-webkit-scrollbar {
  width: 12px;
}
.can-scroll-container::-webkit-scrollbar-track {
  background: #1e1e1e;
}
.can-scroll-container::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 6px;
}
.can-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #666;
}

.canView {
  display: flex;
  gap: 16px;
}

.column {
  flex: 1;
  height: 600px;
  border: 1px solid gray;
  overflow: hidden;
}

.can-container {
  height: 100%;
  overflow-y: auto;
}

.canAnalyzerBox {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 1rem 1rem 1rem;
  box-sizing: border-box;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.canAnalyzerContent {
  height: 100%;
  background: #1e1e1e;
  border-radius: 8px;
  padding: 1rem;
  box-sizing: border-box;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.canAnalyzer-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  scrollbar-gutter: stable;
}

.tx-card {
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px 16px;
  margin-top: 12px;
  background: #252525;
  border: 1px solid #333;
  border-radius: 8px;
  box-sizing: border-box;
}

.tx-row-1 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tx-title {
  font-size: 13px;
  font-weight: 600;
  color: #ff8c00;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tx-channel-radio {
  display: flex;
  gap: 16px;
}

.tx-main-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}

.tx-row-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-end;
  flex: 1 1 auto;
  min-width: 0;
}

.tx-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tx-field > label {
  font-size: 11px;
  color: #aaa;
}

.tx-input {
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #151515;
  color: #e0e0e0;
  outline: none;
  font: inherit;
  box-sizing: content-box;
}

.tx-input:focus {
  border-color: #ff8c00;
  box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.15);
}

.tx-pid {
  width: 7ch !important;
  text-transform: uppercase;
  font-family: monospace;
}

.tx-input-dlc {
  width: 4ch !important;
}

.tx-input-period {
  width: 6ch !important;
}

.tx-data-bytes {
  display: flex;
  gap: 4px;
}

.tx-byte {
  width: 2ch !important;
  text-align: center;
  text-transform: uppercase;
  font-family: monospace;
}

.tx-flags-row {
  display: flex;
  gap: 12px;
  align-items: center;
  height: 30px;
}

.tx-quickfill-row {
  display: flex;
  gap: 6px;
  align-items: center;
}

.tx-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
  flex: 0 0 auto;
  align-items: flex-end;
}

.tx-actions > button {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  min-width: 80px;
}

.tx-card .secondaryButton {
  background-color: #2a2a2a;
  color: #ddd;
  border: 1px solid #444;
}

.tx-card .secondaryButton:hover:enabled {
  background-color: #3a3a3a;
  border-color: #ff8c00;
}

.tx-card .secondaryButton:disabled {
  background-color: #1a1a1a;
  color: #555;
  border-color: #2a2a2a;
  cursor: not-allowed;
}

.tx-card .destructiveButton {
  background-color: #b22222;
  color: #fff;
  border: 1px solid #b22222;
}

.tx-card .destructiveButton:hover:enabled {
  background-color: #d62828;
  border-color: #d62828;
}

.tx-card .destructiveButton:disabled {
  background-color: #3a1a1a;
  color: #6a4a4a;
  border-color: #3a1a1a;
  cursor: not-allowed;
}

.tx-card .primaryButton:disabled {
  cursor: not-allowed;
}

.tx-fill-btn {
  padding: 6px 14px !important;
  font-size: 0.85rem !important;
  height: 32px;
  align-self: flex-end;
}

.tx-transit {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.tx-transit-title {
  font-size: 12px;
  font-weight: 600;
  color: #ff8c00;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tx-transit-table {
  display: flex;
  flex-direction: column;
  border: 1px solid #333;
  border-radius: 6px;
  overflow: hidden;
  font-family: Consolas, monospace;
  font-size: 12px;
  background: #151515;
}

.tx-transit-row {
  display: grid;
  grid-template-columns: 60px 40px 90px 50px 1fr 80px 50px 50px;
  align-items: center;
  min-height: 24px;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid #222;
}

.tx-transit-row:last-child {
  border-bottom: none;
}

.tx-transit-row:hover {
  background: rgba(255, 140, 0, 0.08);
}

.tx-transit-row.selected {
  background: rgba(255, 140, 0, 0.22);
}

.tx-transit-row.tx-transit-head {
  background: #202020;
  cursor: default;
  color: #ff8c00;
  font-weight: 600;
}

.tx-transit-row.tx-transit-head:hover {
  background: #202020;
}

.tx-cell {
  padding: 4px 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #d4d4d4;
}

.tx-cell-const,
.tx-cell-idx,
.tx-cell-dlc,
.tx-cell-flag {
  text-align: center;
}

.tx-cell-period {
  text-align: right;
}

.tx-cell-const input[type=checkbox] {
  cursor: pointer;
}

.can-channel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  border-radius: 6px;
  background: #252525;
}

.channel-left {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.channel-title {
  color: #ff8c00;
  font-weight: 600;
  font-size: 0.85em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.channel-info {
  display: flex;
  gap: 10px;
  font-size: 0.75em;
  color: #888;
  white-space: nowrap;
}

.channel-info span::after {
  content: "|";
  margin-left: 10px;
  color: #555;
}

.channel-info span:last-child::after {
  content: "";
}

.channel-subtitle {
  color: #666;
  font-size: 0.8em;
  white-space: nowrap;
  flex-shrink: 0;
}

.can-view-slot {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.toolbar-btn {
  padding: 0.35rem 0.6rem;
  background: #252525;
  border: 1px solid #333;
  border-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.3rem;
}

.toolbar-bar {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.toolbar-btn.on {
  border-color: #00ff40;
  box-shadow: 0 0 6px #00ff40;
}

.toolbar-btn.off {
  border-color: #333;
  color: #888;
}

.toolbar-btn.recording {
  border-color: #ff4444;
  box-shadow: 0 0 6px #ff4444;
}

.toolbar-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.toolbar-btn:not(:disabled):hover {
  border-color: #ff8c00;
  color: #ff8c00;
  background: #2a2a2a;
}

.toolbar-header {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.action-divider {
  width: 1px;
  height: 18px;
  background: #444;
  flex: 0 0 1px;
}

.toolbar-header .toolbar-btn {
  padding: 0.35rem 0.6rem;
  background: #252525;
  border: 1px solid #333;
  border-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.modal-content *,
.modal-content *::before,
.modal-content *::after {
  box-sizing: inherit;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  box-sizing: border-box;
  width: 820px;
  max-width: 95vw;
  background: #1e1e1e;
  border-radius: 10px;
  border: 1px solid #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-header {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #ff8c00;
  border-bottom: 1px solid #2a2a2a;
}

.modal-body {
  padding: 18px;
}

.columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
}

.channel-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.channel-title {
  font-size: 13px;
  font-weight: 600;
  color: #bbb;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.field label {
  font-size: 12px;
  color: #aaa;
  margin: 0;
}

.input {
  width: 100%;
  min-width: 0;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #151515;
  color: #e0e0e0;
  outline: none;
  font: inherit;
}

.input:focus {
  border-color: #ff8c00;
  box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.15);
}

.modal-footer {
  padding: 14px 18px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid #2a2a2a;
}

.btn {
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #2a2a2a;
  color: #ddd;
  cursor: pointer;
}

.btn.primary {
  background: #ff8c00;
  border-color: #ff8c00;
  color: #111;
}

.btn:hover {
  filter: brightness(1.1);
}

@media (max-width: 1300px) and (max-height: 770px) {
  html {
    font-size: 10px;
  }
}
@media (min-width: 1300px) and (min-height: 770px) and (max-width: 1950px) and (max-height: 1100px) {
  html {
    font-size: 13px;
  }
}
@media (min-width: 1950px) and (min-height: 1100px) and (max-width: 2600px) and (max-height: 1460px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 2600px) and (min-height: 1460px) {
  html {
    font-size: 19px;
  }
}
body {
  height: 100vh;
  margin: 0;
  background-image: url("background.png");
  background-repeat: repeat;
  color: #ffffff;
  font-family: "Lato";
}

::-webkit-scrollbar-track {
  background-color: #000000;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #ef7402;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #ffa500;
}

.smallLogoContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 3vh 3vw;
  width: calc(100% - 6vw);
}
.smallLogoContainer .neoLogoSmall {
  width: min-content;
}
.smallLogoContainer .neoLogoSmall img {
  height: 6vh;
  transition: all 0.5s;
}
.smallLogoContainer .neoLogoSmall:hover img {
  filter: drop-shadow(0 0 10px #ffa500);
  transition: all 0.5s;
}
.smallLogoContainer .navigationMenu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-items: center;
  gap: 3rem;
}
.smallLogoContainer .navigationMenu a {
  text-decoration: none;
  transition: all 0.3s;
  color: #ffffff;
  font-size: 1.25rem;
}
.smallLogoContainer .navigationMenu a:hover {
  filter: drop-shadow(0 0 10px #ffa500);
  font-weight: 700;
  color: #ffa500;
}
.smallLogoContainer .navigationMenu .active {
  font-weight: 700;
  color: #ef7402;
}

.menuHeader {
  font-size: 5rem;
}

.columnMain {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.primaryButton,
.secondaryButton,
.destructiveButton {
  border: none;
  outline: none;
  color: #ffffff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  font-family: "Lato";
  padding: 1rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 300ms;
}

.primaryButton {
  background-color: #ef7402;
}
.primaryButton:disabled {
  background-color: rgba(239, 116, 2, 0.5019607843);
  cursor: not-allowed;
}
.primaryButton:hover:enabled {
  background-color: #ffa500;
}

.secondaryButton {
  background-color: #000000;
}
.secondaryButton svg {
  padding-right: 1ch;
}
.secondaryButton:hover {
  background-color: #24252f;
}

.destructiveButton {
  background-color: #24252f;
}
.destructiveButton svg {
  padding-right: 1ch;
}
.destructiveButton:hover {
  background-color: #68696e;
  color: #000000;
}

.backButton > svg {
  padding-right: 1ch;
}

.dialogWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: contrast(0.7);
}
.dialogWrapper .confirmationDialog {
  max-width: 50rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: #000000;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 2px #000000;
}
.dialogWrapper .confirmationDialog form {
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.dialogWrapper .confirmationDialog form .toggleGroup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  -webkit-justify-content: stretch;
  justify-content: stretch;
  gap: 0.5rem;
}
.dialogWrapper .confirmationDialog form .toggleGroup .toggleGroupButtons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.dialogWrapper .confirmationDialog form .legalInformation {
  display: grid;
  grid-auto-flow: column;
  gap: 0.5rem;
  cursor: pointer;
}
.dialogWrapper .confirmationDialog form .legalInformation * {
  cursor: pointer;
}
.dialogWrapper .confirmationDialog form .legalInformation .checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1em;
  height: 1em;
  font: inherit;
  border: 0.1em solid #ef7402;
  margin-bottom: -0.125em;
}
.dialogWrapper .confirmationDialog form .legalInformation .checkbox:not(:checked):hover {
  width: 1em;
  height: 1em;
  border-color: transparent;
  background: #ef7402 border-box;
}
.dialogWrapper .confirmationDialog form .legalInformation .checkbox:checked {
  width: 1em;
  height: 1em;
  border-color: transparent;
  background-image: url("checkmark.png");
  background-repeat: no-repeat;
  background-size: contain;
  border: 0.1em solid #ef7402;
}
.dialogWrapper .confirmationDialog form .formInputContainer {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  gap: 1rem;
  /* Firefox */
}
.dialogWrapper .confirmationDialog form .formInputContainer input::-webkit-outer-spin-button,
.dialogWrapper .confirmationDialog form .formInputContainer input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.dialogWrapper .confirmationDialog form .formInputContainer input[type=number] {
  -moz-appearance: textfield;
}
.dialogWrapper .confirmationDialog form .formInputContainer input {
  flex: 1;
  padding: 0 1rem;
  border: none;
  outline: none;
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  background-color: #24252f;
  min-width: 20rem;
  border-radius: 10px;
}
.dialogWrapper .confirmationDialog form .formInputContainer .formField {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min-content;
  min-width: 20rem;
  padding: 0 1rem;
  border: none;
  outline: none;
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  background-color: #24252f;
  border-radius: 10px;
  width: 20rem;
}
.dialogWrapper .confirmationDialog form .formInputContainer .formField label {
  font-size: 0.75rem;
  padding-top: 0.25rem;
  word-wrap: normal;
}
.dialogWrapper .confirmationDialog form .formInputContainer .formField input {
  padding: 0 0 0.5rem 0;
}
.dialogWrapper .confirmationDialog .infoText {
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.dialogWrapper .confirmationDialog .infoText span:first-child {
  font-size: 2rem;
}
.dialogWrapper .confirmationDialog .dialogButtons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}

.copyButton {
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  margin: -0.5rem 0;
}
.copyButton svg {
  transition: background-color 0.3s;
}

.copyButton:hover svg {
  filter: drop-shadow(0 0 10px #ffa500);
}

.copyButton:active svg {
  filter: drop-shadow(0 0 10px #ef7402);
}

.copyButton {
  border: none;
  outline: none;
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  background-color: #24252f;
}

.copyButton {
  border-radius: 10px;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
  transition: background-color 0s 600000s, color 0s 600000s !important;
}

.toggleButton {
  padding: 0.5rem 1rem;
}
.toggleButton:hover {
  background-color: #ffa500;
}

.activeToggle {
  background-color: #ffa500;
  color: #000000;
}

.rowExtended {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: calc(100% - 20rem);
  gap: 1rem;
}

/*# sourceMappingURL=app.css.map */
