body {
	background-color: #36414d;
	color: white;
}
a {
	font-weight: bold;
	background-color: #3e4f5f;
	text-decoration: none;
}
a:link {
	color: #005aad;
}
a:visited {
	color: #006ed4;
}

span {
	color: red;
}

/* SCROLLBAR */

::-webkit-scrollbar {
	width: 10px;
}
  
::-webkit-scrollbar-track {
	background: #f1f1f1;
}
  
::-webkit-scrollbar-thumb {
	background: #888;
}
  
::-webkit-scrollbar-thumb:hover {
	background: #555;
}

/* MAIN/OTHER */

#main-content {
	margin: auto;
	max-width: 800px;
}

#footer {
	margin-top: 5px;
	line-height: 30px;
	background-color: #2c353d;
	font-size: 20px;
	font-family: 'Roboto Mono', monospace;
	text-align: center;
}

#page-content {
	background-color: #2c353d;
	padding-bottom: 30px;
}

/* HEADER */

#header {
	background-color: #2c353d;
	line-height: 60px;
}

#logo {
	text-align: center;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: clamp(12px, 4.2vw, 48px);
}

#disclaimer {
	margin: 0;
	text-align: center;
	line-height: 40px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: larger;
	color: #748493;
}

/* INPUT */

#input-content {
	top: 10px;
	position: relative;
}

.input-name {
    padding: 10px;
    font-family: 'Roboto Mono', monospace;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80%;
}

.input-label {
	border-radius: 25px;
	margin: auto;
	margin-top: 10px;
	background-color: #3e4f5f;
	max-width: calc(100% - 75px);
	height: 40px;
}

.input {
	width: calc(100% - 260px);
	height: 25px;
	margin-top: -35px;
	margin-right: 5px;
	border-radius: 10px;
	float: right;
	background-color: #20262e;
	border: 0px;
	font-family: 'Roboto Mono', monospace;
	color: white;
}

/* OUTPUT */

#output-content {
	overflow: auto;
	background-color: #21272e;
	width: 90%;
	height: 150px;
	margin: auto;
	top: 20px;
	font-family: 'Roboto Mono', monospace;
	position: relative;
}

#output-text {
	padding: 25px;
}

#copy-output {
	background-color: #1a1e24;
	width: 200px;
	border-radius: 25px;
	font-family: 'Source Sans Pro', sans-serif;
	text-align: center;
	position: sticky;
	top: 25px;
	float: right;
    margin-right: 25px;
	transition: background-color 0.5s;
}

#copy-output:hover {
	background-color: #2c3138;
	cursor: pointer;
}

/* MODIFIERS */

#modifier-button,.close-modifier,#attribute-button,.close-attribute {
	border-radius: 10px;
	background-color: #36414d;
	border: 0;
	width: 30px;
	height: 30px;
	margin: 5px;
	color: white;
	font-weight: bold;
	font-size: larger;
	padding: 0px;
}

.close-modifier,.close-attribute {
	position: absolute;
	right: 50px;
	margin: -5px;
}

#modifier-button:hover,.close-modifier:hover,#attribute-button:hover,.close-attribute:hover {
	background-color: #1a1e24;
	cursor: pointer;
}

#modifier-label {
	display: flex;
}

.modifier-input {
	max-width: 100px;
}

.modifier-label {
	display: flex;
	align-items: baseline;
}

.modifier-donotclear {
	align-self: flex-end;
	width: 100px;
}

.modifier-name,.modifier-length,.attribute-name,.attribute-value {
	margin: 0 10px 0 10px;
}