* {
  box-sizing: border-box;
  padding: 0%;
  margin: 0%;
  list-style: none;
  text-decoration: none;
}
:root {
  --bg: #000;
  --text: #fff;
  --primary: #360606;
}
body {
  background: var(--bg);
}
.container {
  width: 100%;
  height: 100vh;
  font-family: "Courier New", Courier, monospace;
  color: var(--text);
  background: var(--bg);
  padding: 10px 10px;
  padding-top: 20px;
  font-size: 10px;
}
/* NAV */
.container nav {
  width: 100%;
  height: auto;
  padding: 10px 5px;
  position: fixed;
  bottom: 0%;
  left: 0%;
}
.container nav ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.container nav ul li a {
  padding: 5px 10px;
  font-size: 17px;
  color: var(--bg);
  background: var(--text);
  border-radius: 5px;
}

.container nav ul li a.active {
  color: var(--text);
  background: var(--primary);
  border-radius: 5px;
}
.container .ref {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 2em 2em;
  padding-top: 3em;
}
.container .ref h1 {
  font-size: 2.5em;
  color: var(--text);
  margin-top: 1em;
  text-align: center;
}
.container .ref .copyCont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5em 1.5em;
  box-shadow: rgba(225, 225, 225, 0.35) 0px 5px 10px;
  border-radius: 5px;
  margin: 1.5em 0em;
}
.container .ref .copyCont ul {
  width: calc(100% - 120px);
}
.container .ref .copyCont ul h2 {
  color: var(--primary);
  font-size: 2em;
}
.container .ref .copyCont ul p {
  font-size: 1.6em;
  word-break: break-all;
  color: var(--text);
  margin-top: 0.8em;
}
.container .ref .copyCont .btn {
  display: inline-block;
  font-size: 1.4em;
  padding: 0.7em 2em;
  font-weight: 600;
  color: var(--text);
  background: var(--primary);
  border-radius: 10px;
  cursor: pointer;
}
.container .ref h3 {
  color: var(--text);
  font-size: 1.8em;
  margin-top: 0.5em;
}

/*  */
.container .ref .rows {
  display: flex;
  max-height: 400px;
  overflow-y: scroll;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2em;
  margin-top: 1em;
  /* border: 2px solid; */
}
.container .ref .rows form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
  gap: 2em;
  display: none;
}
.container .ref .rows form input {
  width: 100%;
  height: 3.5em;
  padding: 0em 1em;
  outline: none;
  border: none;
}
.container .ref .rows form p {
  font-size: 1.2em;
}
.container .ref .rows form p span {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--primary);
  margin-right: 0.5em;
}
.container .ref .rows form button {
  width: 50%;
  height: 2.5em;
  font-size: 1.8em;
  padding: 0em 1em;
  color: var(--text);
  background: var(--primary);
  outline: none;
  border: none;
}
.container .ref .rows form.show {
  /* changed this to fit the new js effect */
  display: flex;
}

/* NEW CODE FOR THE REF */
.container .ref .rows ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding: 15px 0px;
  padding-bottom: 20px;
}
.container .ref .rows ul li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5px;
}
.container .ref .rows ul li .dp {
  width: 30px;
  height: 30px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text);
  background: var(--primary);
}
.container .ref .rows ul li h2 {
  width: calc(100% - 40px);
  font-size: 12px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  gap: 0.4em;
  font-weight: 600;
}
#telegramShareBtn, #telegramCopyLinkBtn {
  margin: 10px 0;
  padding: 10px;
  background-color: #0088cc;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#telegramShareBtn:hover, #telegramCopyLinkBtn:hover {
  background-color: #006699;
}
