@font-face {
  font-family: "Megatrans Demo";
  src: url("https://db.onlinewebfonts.com/t/71c735cd1f73a7824c58334e0368614e.eot");
  src: url("https://db.onlinewebfonts.com/t/71c735cd1f73a7824c58334e0368614e.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/71c735cd1f73a7824c58334e0368614e.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/71c735cd1f73a7824c58334e0368614e.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/71c735cd1f73a7824c58334e0368614e.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/71c735cd1f73a7824c58334e0368614e.svg#Megatrans Demo")format("svg");
}
@font-face {
  font-family: "Segoe UI Variable";
  src: url('/fonts/SegoeUIVF.ttf')format("truetype"),;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent
}

body {
    margin: 0;
    line-height: inherit
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit
}

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

b,
strong {
    font-weight: bolder
}

code,
kbd,
pre,
samp {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em
}
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: #000;
    margin: 0;
    padding: 0

}
label{
  font-family: 'Segoe UI Variable';
}
button,
select {
    text-transform: none
}

button,
input:where([type=button]),
input:where([type=reset]),
input:where([type=submit]) {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none
}

:-moz-focusring {
    outline: auto
}

:-moz-ui-invalid {
    box-shadow: none
}


::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto
}

.font-inter{
  font-family: "Segoe UI Variable" !important;
}

#solidityVersion , #runs{
  border-radius: 5px;
}

.input {
  background-color: #212121;
  width: 100%;
  color: rgb(143 143 143 / var(--tw-text-opacity));

  padding: 10px;
  /* text-align: center; */
  border: 2px solid white;
  border-radius: 5px;
  /* box-shadow: 3px 3px 2px rgb(249, 255, 85); */
}

.input:focus {
  color: #29f266;
  background-color: #212121;
  outline-color: #29f266;
  box-shadow: -1px -1px 10px #29f266;
  transition: .1s;
  transition-property: box-shadow;
}

.button {
  padding: 15px 30px;
  border: 2px solid #2c2c2c;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.4s ease;
  outline: none;
  position: relative;
  overflow: hidden;
  font-weight: bold;
}

.button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: scale(0);
  transition: transform 0.5s ease;
}

.button:hover::after {
  transform: scale(4);
}

.button:hover {
  border-color: #666666;
  background: #292929;
}
.button:disabled,
.button[disabled]{
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
}

.settings-container{
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 20px;
}
.settings{
  width: 20%;
}
.prompt{
  width:40%;
}
.prompt textarea{
  height: 150px;
  max-height: 150px;
  min-height: 150px;
}
.prompt h3{
  margin-top: 10px;
  margin-bottom: 10px;
}
.error-log{
  width: 40%;
  margin-top: 45px;
}

/* The Modal (background) */
.modal-overlay {
  position: fixed; /* Stay in place */
  z-index: 99; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal {
  position: relative;
  background-color: #212121;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal div{
  margin: 5px 0px;
}
.modal h2{
  margin-top: .5rem;
  margin-bottom: .5rem;
  font-size: 24px;
}
.modal select{
  max-width: 200px;
}
.modal input{
  border-radius: 5px;
}
.modal label {
  --tw-text-opacity: 1;
  color: rgb(143 143 143 / var(--tw-text-opacity));
  margin-right: 5px;
}
/* The Close Button */
.close {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 16px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width:768px) {
  .m-flex-col{
    flex-direction: column !important;
  }
  .m-flex-col section {
    width: 100% !important;
  }
  .settings-container{
    flex-direction: column;

  }
  .settings{
    width: 100%;
  }
  .prompt{
    width:100%;
  }
  .error-log{
    width: 100%;
  }
}