body {
    font-family: 'Inter', sans-serif;
    text-align: center;
    background-color: #1E201F;
    color: #FFFFF0;
}
body.light {
    background-color: #FFFFF0;
    color: #1E201F;
}
table {
    margin: auto;
}
input {
    margin: auto;
}
#info {
    font-size: 14px;
    color: rgb(171, 171, 171);
}
body.light #info {
    color: rgb(102, 102, 102);
}
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}
a:link {
color: rgb(177, 177, 177);
background-color: transparent;
text-decoration: none;
}
body.light a:link {
    color: rgb(102, 102, 102);
}
a:visited {
color: rgb(177, 177, 177);
background-color: transparent;
text-decoration: none;
}
body.light a:visited {
    color: rgb(102, 102, 102);
}
a:hover {
color: rgb(102, 102, 102);
background-color: transparent;
text-decoration: underline;
}
body.light a:hover {
    color: rgb(78, 78, 78);
}
a:active {
color: rgb(177, 177, 177);
background-color: transparent;
text-decoration: underline;
}
body.light a:active {
    color: rgb(102, 102, 102);
}
#title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 1.5em;
}
body.light #lvc-logo {
    filter: invert(1);
}
hr.solid {
    border-top: .2px solid #424242;
}
#search-container {
    display: flex;
    width: 250px;
    margin: 0 auto;
    align-items: center;
    gap: 6px;
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-radius: 8px;
    padding: 4px 8px;
    transition: border-color 0.2s;
}
body.light #search-container {
  background: #e0e0e0;
  border-color: #ccc;
}
body.light #search-container button {
  background: #ccc;
  border-color: #bbb;
}
body.light #search-container button img {
  filter: invert(1);
}
body.light #search-container input {
  color: #1E201F;
}
#search-container:focus-within {
    border-color: #555;
}
#search-container input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 13px;
    color: #FFFFF0;
}
#search-container input::placeholder {
    color: #FFFFF0;
}
body.light #search-container input::placeholder {
    color: #1E201F;
}
#search-container button {
    background: #2e2e2e;
    border: none;
    border-radius: 6px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    color: #aaa;
    font-size: 12px;
}
#search-container button:hover {
    background: #3a3a3a;
    color: #eee;
}
#blocks-table {
    font-family: 'JetBrains Mono', monospace;
}
#search-result {
  font-family: 'Inter', sans-serif;
}

#search-result strong {
    font-family: 'JetBrains Mono', monospace;
}
#copy-btn {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 4px;
    font-size: 11px;
    padding: 2px 6px;
    cursor: pointer;
    margin-left: 4px;
    position: relative;
    width: 32px;
    height: 24px;
}
body.light #copy-btn {
    background: #fff;
}
#copy-btn img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
}
body.light #copy-btn img {
    filter: invert(1);
}
#copy-btn #icon-check {
    opacity: 0;
    transition: opacity 0.3s ease;
}
body.light #copy-btn #icon-check img {
    filter: invert(1);
}
#lang-toggle {
    background: #2a2a2a;
    color: #fff;
    border: 1px solid #3a3a3a;
    border-radius: 4px;
    font-size: 15px;
    padding: 2px 2px;
    cursor: pointer;
    position: absolute;
    left: 15px;
}
body.light #lang-toggle {
    background: #fff;
    color: #2a2a2a;
    border: 1px solid #3a3a3a;
}
#theme-toggle {
    background: #2a2a2a;
    color: #fff;
    border: 1px solid #3a3a3a;
    border-radius: 4px;
    font-size: 15px;
    padding: 2px 2px;
    cursor: pointer;
    position: absolute;
    right: 15px;
}
body.light #theme-toggle {
    background: #fff;
    color: #2a2a2a;
    border: 1px solid #3a3a3a;
}