/* ==============================
   Global Reset & Base Styles
   ============================== */
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  background: url("header.png") no-repeat center top;
}

/* ==============================
   Layout Containers
   ============================== */
#wrapper {
  margin: 0 auto;
  width: 1000px;
}

#header {
  width: 0;
  height: 0;
  float: left;
  margin: 0;
  padding: 0;
  color: #616161;
}

#body {
  width: 780px;
  float: left;
  display: inline;
  margin: -24px 0 0 83px;
  padding: 10px;
  color: #616161;
}

#footer {
  width: 1000px;
  margin: 0 auto;
  clear: both;
  padding: 10px;
  color: #616161;
}

#footer p {
  font-size: 12px !important;
  text-align: center;
  letter-spacing: 2px;
}

/* ==============================
   Navigation
   ============================== */
#navigation {
  width: 275px;
  margin: 390px 0 0 630px;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  text-transform: uppercase;
}

#navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 2px;
}

#navigation ul li a {
  display: block;
  width: 100%;
  padding: 5px 0;
  text-align: center;
  letter-spacing: 2px;
  text-decoration: none;
  color: #fff;
  background-color: rgba(0,0,0,.3);
  transition: background 0.3s ease;
}

#navigation ul li a:hover {
  background-color: rgba(0,0,0,.9);
}

/* ==============================
   Utility Buttons / Links
   ============================== */
.samplelink {
  width: 400px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid #000;
  background-color: #fff;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-optical-sizing: auto;
}

.copy-button {
  width: 100px;
  margin: 5px auto 0 !important;
  padding: 10px !important;
  border: 1px solid #000;
  background-color: #fff;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px !important;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  transition: background 0.2s;
  font-optical-sizing: auto;
}

.copy-button:hover {
  background-color: #f0f0f0;
}

/* ==================================================
   WEBRING
   ================================================== */

#fanlistings {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 13px;
  font-style: normal;
}

/* ==============================
   Forms (Custom & Show_ Classes)
   ============================== */
.custom_input {
  display: flex;
  align-items: center;
  margin-bottom: 5px !important;
}

.custom_input label {
  width: 120px;
  display: inline-block;
  text-align: right;
  margin-right: 10px;
}

.custom_input .input,
form[class^="show_"] input[type="text"],
form[class^="show_"] input[type="email"],
form[class^="show_"] input[type="password"],
form[class^="show_"] input[type="url"],
form[class^="show_"] select,
form[class^="show_"] textarea {
  display: block;
  width: 300px;
  margin-bottom: 5px;
  padding: 10px;
  font-size: 20px;
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 0;
  box-sizing: border-box;
  outline: none;
  transition: 0.3s ease;
}

.custom_input .input:focus,
form[class^="show_"] input:focus,
form[class^="show_"] select:focus,
form[class^="show_"] textarea:focus {
  background-color: rgba(0,0,0,0.7);
}

.custom_input .input::placeholder,
form[class^="show_"] ::placeholder {
  color: #000;
}

.custom_input input[type="submit"],
form[class^="show_"] input[type="submit"],
form[class^="show_"] input[type="reset"] {
  width: auto;
  margin-top: 10px;
  padding: 10px 20px;
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s;
}

.custom_input input[type="submit"]:hover,
form[class^="show_"] input[type="submit"]:hover,
form[class^="show_"] input[type="reset"]:hover {
  background-color: rgba(0,0,0,0.7);
}

form[class^="show_"] p {
  margin-bottom: 15px;
}

form[class^="show_"] span[class$="_label"] {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #000;
}

form[class^="show_"] textarea {
  min-height: 60px;
  resize: vertical;
}

form[class^="show_"] select {
  margin-bottom: 5px;
}

form[class^="show_"] input[type="radio"],
form[class^="show_"] input[type="checkbox"] {
  margin-right: 5px;
  vertical-align: middle;
}

form[class^="show_"] span[class*="_field_label"] {
  display: inline;
  margin-left: 5px;
  font-weight: normal;
}

.show_join_email_settings_yes,
.show_join_email_settings_no,
.show_update_email_settings_leave,
.show_update_email_settings_yes,
.show_update_email_settings_no,
.show_join_send_account_info_yes {
  display: block !important;
  margin: 3px 0;
}

.show_join_password_field,
.show_update_password_field,
.show_join_password_field2,
.show_update_password_field2 {
  display: block;
  width: 300px;
}

.show_join_password_field2,
.show_update_password_field2 {
  margin-top: 5px;
}

/* ==============================
   Typography
   ============================== */
p {
  margin: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
}

p a {
  color: #8f6464;
}

p a:hover {
  color: #d67171;
}

h1, h2, h3 {
  margin-bottom: 20px;
  font-family: "SUSE Mono", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  color: #000;
}

h1 { font-size: 30px; font-weight: bold; }
h2 { font-size: 24px; font-weight: 600; }
h3 { font-size: 20px; font-weight: 600; margin-top: 20px; }

b {
  color: #d67171;
  font-weight: normal;
}

i {
  color: #5a5a8c;
  font-style: normal;
}

/* ==============================
   Stats
   ============================== */
.stats {
  margin: 20px;
  padding-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  color: #616161;
}

.stats a {
  color: #8f6464;
}

.stats a:hover {
  color: #d67171;
}

/* ==============================
   Codes & Sorting
   ============================== */
.show_sort_list,
.codesort a {
  color: #8f6464;
}

.show_sort_list:hover,
.codesort a:hover {
  color: #d67171;
}

#codes ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1em;
  justify-content: center;
}

#codes li {
  display: inline;
}

#codes p {
  text-align: center;
}

#codes p img {
  margin: 0 auto;
}

.show_sort_list {
  margin-left: 100px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  list-style-type: none;
  padding: 0;
}

.show_sort_list li {
  margin: 5px 0;
}

.show_sort_list a {
  color: #8f6464;
  text-decoration: none;
}

.show_sort_list a:hover {
  color: #d67171;
  text-decoration: none;
}

.codesizes {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  list-style-type: none;
}
