/* GLOBAL STYLES */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: darkcyan;
  color: yellow;
  font-family: monospace;
  padding: 20px;
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  position: relative;
}

/* ===============================
 Terminal Layout
================================= */
.terminal {
  background: #004f4f;
  border: 1px solid yellow;
  width: 60%;
  max-width: 600px;
  padding: 10px;
  margin-right: 20px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  border-bottom: 1px solid yellow;
}

.terminal-header .buttons {
  display: flex;
  gap: 5px;
}

.terminal-header .buttons span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: yellow;
  display: inline-block;
}

.terminal-header .title {
  font-size: 14px;
}

.terminal-body {
  padding: 10px;
  border-top: 1px solid yellow;
  background: #004f4f;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

/* ===============================
 Generator Interface
================================= */
#generator-container {
  position: relative;
  z-index: 1;
}

.password-controls,
.password-output {
  margin-bottom: 10px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="number"],
input[type="text"] {
  width: 100%;
  padding: 5px;
  margin-bottom: 5px;
  background-color: #003636;
  border: 1px solid yellow;
  color: yellow;
  font-family: monospace;
}

/* ===============================
 ASCII Checkbox Styling
================================= */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.checkbox-group div {
  display: flex;
  align-items: center;
}

.ascii-checkbox {
  font-size: 16px;
  cursor: pointer;
  user-select: none;
  margin-right: 5px;
}

/* ===============================
 Buttons
================================= */
.btn-gen,
.preset-btn {
  background-color: yellow;
  color: darkcyan;
  border: none;
  padding: 0.6rem 1.0rem;
  font-weight: bold;
  cursor: pointer;
  margin: 5px 2px;
  border-radius: 4px;
  font-family: monospace;
}

.btn-gen:hover,
.preset-btn:hover {
  background-color: #ffe100;
}

/* ===============================
 Footer
================================= */
.footer-container {
  text-align: center;
  padding: 5px;
  background: #004f4f;
  color: yellow;
  border-top: 1px solid yellow;
  width: 60%;
  max-width: 600px;
  border-radius: 6px;
}

/* ===============================
 Visual Elements
================================= */
.cursor {
  display: inline-block;
  width: 8px;
  height: 12px;
  background-color: yellow;
  margin-left: 2px;
  animation: blink 0.5s steps(2) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ===============================
 Copy Message & Strength Meter
================================= */
#copy-message {
  position: absolute;
  background: #004f4f;
  color: red;
  border: 1px solid yellow;
  padding: 5px 10px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  font-family: monospace;
}

#copy-message.show {
  opacity: 1;
}

#strength-indicator {
  margin-top: 5px;
}

/* ===============================
 Info Section
================================= */
#info-section {
  margin-top: 20px;
  padding: 10px;
  background: #004f4f;
  color: yellow;
  border: 1px solid yellow;
  max-width: 400px;
  margin-left: 20px;
  border-radius: 6px;
}

.terminal-frame ul {
  list-style: none;
  padding-left: 0;
}

.terminal-frame ul li::before {
  content: "\2022 ";
  color: yellow;
}

  
