/* tango-steven-theme.css – Clean and Consistent Tango Theme */

:root {
  --bg: #2e3436;
  --fg: #eeeeec;
  --fg-alt: #d3d7cf;
  --accent: #729fcf;
  --accent-dark: #3465a4;
  --error: #cc0000;
  --warning: #f57900;
  --success: #73d216;
  --comment: #888a85;
  --highlight: #555753;
  --modal-bg: #3f4447;
  --input-bg: #1c1c1c;
  --input-border: #555753;
}

/* Base */
body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: 'Roboto', sans-serif;
}

/* Headings */
h1, h2, h3, h4, h5 {
  color: var(--accent);
  font-family: 'Rubik', sans-serif;
}

/* Links */
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* Toolbar */
#toolbar {
  background-color: #3c3f41;
  color: var(--fg);
  font-family: 'Press Start 2P', monospace;
  text-transform: uppercase;
  border-bottom: 1px solid var(--highlight);
  padding: 0.6rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Title & Header */
.title {
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  /*margin: 1.5rem 0 0.5rem 0;*/
}
.header {
  font-size: 16px;
  color: var(--comment);
  text-align: center;
  margin-bottom: 2rem;
}

/* Token CTA Button */
.token-cta {
  background: linear-gradient(to right, #44494d, #5c6165);
  color: var(--fg);
  padding: 10px 15px;
  border: 1px solid var(--input-border);
  border-radius: 6px;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.token-cta:hover {
  background: #6c7378;
  color: var(--fg);
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(114, 159, 207, 0.3);
}

/* Logout Button */
.logout-btn {
  background-color: var(--modal-bg);
  color: var(--error);
  padding: 10px;
  border: 1px solid var(--error);
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.logout-btn:hover {
  background-color: var(--error);
  color: var(--bg);
}

/* Inputs & Textareas */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  background-color: var(--input-bg);
  color: var(--fg);
  border: 1px solid var(--input-border);
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
}
input:focus, textarea:focus {
  border-color: var(--accent);
  outline: none;
}

/* Forms */
form {
  background-color: var(--modal-bg);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Styled Buttons */
.styled-btn {
  background: linear-gradient(to right, var(--accent), var(--accent-dark));
  color: var(--fg);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  width: 100%;
  cursor: pointer;
  transition: background 0.25s ease-in-out;
  margin-top: 1rem;
}
.styled-btn:hover {
  background: var(--accent-dark);
}

/* Modal Containers */
.modal__container {
  background-color: var(--modal-bg);
  color: var(--fg);
  border-radius: 10px;
  padding: 2rem;
}

/* Modal Header */
.modal__header {
  text-align: center;
  padding: 1rem 0;
}
.modal__header img {
  max-width: 120px;
  height: auto;
  margin: 0 auto 1rem auto;
}

/* Summary Dropdowns */
details {
  background-color: var(--input-bg);
  border: 1px solid var(--highlight);
  padding: 1rem;
  border-radius: 8px;
}
summary {
  cursor: pointer;
  color: var(--accent);
  font-weight: 500;
}
details[open] summary span.icon {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

/* Textareas */
textarea {
  resize: vertical;
}

/* Footer */
footer {
  color: var(--comment);
  text-align: center;
  padding: 1rem 0;
  font-size: 0.85rem;
}

/* Utility */
.text-center {
  text-align: center;
}
