html {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background-color: #000000;
  color: #ffffff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
}

.emoji-fill {
  color: transparent;
  text-shadow: 0 0 0 #ffffff;
}

button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

.goto {
  padding: 5px 9px;
}

button {
  background-color: #305f4d; 
  border: none;
  color: white;
  padding: 5px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 6px;
  max-height: 28px;
}

button:hover {
  background-color: #45866d;
  transition: background-color 0.2s linear;
}

button:active {
  background-color: #218838; 
  transition: background-color 0s linear;
}

input {
  background-color: #fffcd7;
  color: black;
  border-color: #218838;
  border-style: solid;
  border-width: 4px;
  border-radius: 4px;
  padding-top: 3px;
  padding-bottom: 3px;
}

.myiframe {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  filter: none;
}

.mydiv {position:fixed; bottom:0; left:0; width:100%; height:46px; display:flex; justify-content:space-between; align-items:center; background:#dbcb9d; padding:0 16px;}

/* Wrapper: flex row for each group */
.mydiv > div {
  display: flex;
  align-items: center;
}

/* Apply uniform horizontal spacing */
.mydiv > div > * {
  margin: 0 4px;
}

/* Fixed‑size boxes for buttons & input */
.mydiv button,
.mydiv input[type="number"] {
  box-sizing: border-box;
  width: 36px;
  height: 28px;
  padding: 0;
  border-radius: 4px;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  vertical-align: middle;
}

/* Button look */
.mydiv button {
  background-color: #305f4d;
  color: #fff;
  border: none;
  cursor: pointer;
}
.mydiv button:hover {
  background-color: #45866d;
}
.mydiv button:active {
  background-color: #218838;
}

/* Number‑input look */
.mydiv input[type="number"] {
  background-color: #fffcd7;
  color: #000;
  border: 2px solid #218838;
}
/* WebKit: remove spinner arrows */
.mydiv input[type="number"]::-webkit-outer-spin-button,
.mydiv input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
