body {
    padding-left: 2vw;
    padding-right: 2vw;
}

td {
    vertical-align: top;
}

.hidden {
    visibility: hidden;
}

nav a[role=button] {
    min-width: 6rem;
}

i.fa-eye-slash {
    color: lightgray;
}

[data-tooltip] {
    border-bottom: 0 !important ;
}

table#wordlist td {
    white-space: nowrap;
}

td.word_type {
    font-weight: bold;
    white-space: nowrap;
}

tr.different {
    background-color: lightcoral;
}

td.different {
    color: lightcoral;
    font-weight: bold;
}

span.surrounding_space {
    background-color: red;
}

.disabled {
    color: gray;
    font-style: italic;
}

li a.success {
    background-color: lightgreen;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.htmx-indicator {
  opacity: 0;
  animation: rotating 1s linear infinite;
}

img.logo.htmx-indicator {
    width: 1rem;
}

.pointer {
    cursor: pointer;
}

select.code {
	display: inline-block;
	padding: .375rem .5rem;

	border-radius: var(--border-radius);
	background: var(--code-background-color);
	color: var(--code-color);
	font-weight: var(--font-weight);
	line-height: initial;
	font-size: .875em;
	font-family: var(--font-family);

	--font-family: "Menlo","Consolas","Roboto Mono","Ubuntu Monospace","Noto Mono","Oxygen Mono","Liberation Mono",monospace,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

code.match, td.match {
    color: lightgreen;
}

code.non_match, td.non_match, .non_match {
    color: red;
}
.button_like {
	padding: 0.25rem 0.5rem;
	font-size: 0.75rem;
	line-height: var(--line-height);
}

table.superlative {
    table-layout: fixed;
}

nav ol, nav ul {
	align-items: inherit;
}
.mono {
  font-family:  mono;
  font-size: 0.75em;
}
