#codePopup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
}
.code-popup-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 700px;
  background: #f6efe3;
  padding: 15px;
  border-radius: 10px;
  box-sizing: border-box;
}
#popupCode {
  width: 100%;
  height: 350px;
  padding: 10px;
  box-sizing: border-box;
  font-family: Consolas, monospace;
  font-size: 13px;
  line-height: 1.4;
  white-space: pre;
  overflow: auto;
  resize: none;
  border:1px solid #785c58;
  outline: none;
}
.popup-buttons {
  margin-top: 10px;
  text-align: right;
}
.gadget-actions-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:10px;
  padding: 8px;
  margin-top:auto;
}
.gadget-button {
  padding: 6px 12px;
  border: 1px solid #b89b6f;
  border-radius: 6px;
  background: #f6efe3;
  color: #5b4630;
  font-family: 'Georgia', serif; 
  font-size: 14px;
  cursor: pointer;
  transition: all .25s ease;
}
.gadget-button:hover {
  background: #ead9bb;
  box-shadow: 0 0 10px rgba(184,155,111,0.4);
}
.gadget-button:active {
  transform: scale(0.98);
}