* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #2e3440;
  font-family: system-ui, "Segoe UI", "Fira Code", monospace;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.card {
  background-color: #3b4252;
  max-width: 800px;
  width: 100%;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.4);
  border: 1px solid #434c5e;
}

.title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #eceff4;
  border-left: 5px solid #88c0d0;
  padding-left: 1rem;
  margin-bottom: 1.75rem;
  word-break: break-word;
}

.text-container {
  background-color: #2e3440;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #4c566a;
  transition: all 0.1s ease;
}

.copyable-text {
  color: #d8dee9;
  font-size: 1.1rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
  cursor: pointer;
  user-select: none;
}

.copyable-text:hover {
  color: #81a1c1;
}

.copyable-text a {
  color: #81a1c1;
}

.copy-feedback {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #a3be8c;
  text-align: right;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.2s;
  letter-spacing: 0.3px;
}

.copy-feedback.show {
  opacity: 1;
}

.navbar li a {
  color: #d8dee9;
  text-decoration: none;
  padding: 1rem 1.5rem;
  display: inline-block;
  height: 100%;
  transition:
    color 0.2s,
    background-color 0.2s;

  &:hover {
    color: #88c0d0;
    background-color: #4c566a;
  }
}

.navbar li {
  list-style-type: none;
  height: 100%;
  display: flex;
  align-items: center;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
  height: 100%;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #3b4252;
  padding: 0;
  border-bottom: 1px solid #4c566a;
  z-index: 1000;
  height: 60px;
}

/*.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #3b4252;
  padding: 1rem 2rem;
  border-bottom: 1px solid #4c566a;
  z-index: 1000;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

.navbar li {
  list-style-type: none;
}

.navbar a {
  color: #d8dee9;
  text-decoration: none;
  padding: 0.5rem 0;
  display: inline-block;
  transition: color 0.2s;

  &:hover {
    color: #88c0d0;
    background-color: #4c566a;
  }
}*/
