
.pin-input {
  text-align: center;
  font-size: 1.5em;
  letter-spacing: 10px;
}

.address-container {
  width: 100%;
  text-align: center;
  background-color: #f3f2d7;
}

.address-container .short-address {
  background-color: #f3f2d7;
  color: green;
  text-align: center;
  height: 35px;
  width: 100%;
  border: 0;
}

.hidden {
  display: none !important;
}

/* existing styles below remain unchanged */
h2, h3 {
    color: #333;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f3f2d7;
}

h1 {
    font-size: 1.5vw;
}

h3 {
    font-size: 1vw;
}

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

li {
    margin-bottom: 10px;
}

pre {
    background: #f4f4f4;
    padding: 5px;
    border-left: 5px solid #333;
    overflow-x: auto;
    text-align: left;
}

a {
    display: inline-block;
    margin-top: 5px;
    padding: 1px 2px;
    text-decoration: none;
    border-radius: 5px;
    background: green;
}

a:hover {
    background: #0056b3;
    color: #fff;
}

.linkColor {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: green;
    color: white;
    text-decoration: none;
    width: 45px;
    height: 35px;
    margin: 0 4px;
    border-radius: 4px;
    font-weight: bold;
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    padding: 1em 0;
}

.nav-buttons button {
    background: #007BFF;
    color: white;
    border: none;
    padding: 0.5em 1em;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
}

.nav-buttons button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.full-row {
    width: 100%;
    height: calc(100vh - 60px);
    overflow-x: auto;
    overflow-y: auto;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #888 #eee;
}

.full-row pre,
.full-row code,
.full-row table {
    max-width: 100%;
    overflow: auto;
    white-space: pre;
}

#userAvailable {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
    background: #f3f2d7;
    border-radius: 6px;
}

.linkColorHome {
    width: 55px;
    height: 35px;
    background: orange;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    border-radius: 4px;
    transition: background 0.2s, transform 0.1s;
}

#userAvailable .linkColor {
    width: 55px;
    height: 35px;
    background: #28a745;
    color: #fff;
    font-weight: 500;
    font-size:15px;
    border-radius: 4px;
    transition: background 0.2s, transform 0.1s;
}
.font_{
    font-size:15px;
    color: #fff;
}

#userAvailable .linkColor:hover {
    background: #218838;
    transform: translateY(-1px);
}

#userAvailable .linkColor:active {
    background: #1e7e34;
    transform: translateY(0);
}

#userAvailable .linkColor.active {
    background: #0056b3;
}
.page-wrapper-height1400 {
  height: 1400px;
}

.full-width {
  width: 100%;
}

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

.scrollable-left {
  overflow-y: scroll;
  text-align: left;
}

.scrollable-y {
  overflow-y: scroll;
}

.bg-light {
  background-color: #f3f2d7;
}

.nav-buttons {
  display: flex;
  justify-content: space-between;
}

.centered {
  text-align: center;
}

.padded {
  padding: 1em;
}
.submit-code-container {
  margin: 2px;
  background-color: #f3f2d7;
  color: #fff;
  padding: 8px;
  width: 100%;
  overflow-y: scroll;
}

.margin-2 {
  margin: 2px;
}

.textarea-large {
  width: 100%;
  height: 150px;
}

.textarea-medium {
  width: 100%;
  height: 100px;
}

.btn-submit {
  background-color: gray;
  color: #fff !important;
  cursor: pointer;
}