/* Existing styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 40px 0 40px 0;

}

.container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 600px;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2em;
  color: #333;
}

header p {
  margin: 10px 0 20px;
  color: #666;
}

main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

textarea {
  height: 150px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
  resize: none;
}

/* Buttons  */

button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background-color: #325f8c;
  color: #fff;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #5279a0;
}

footer {
  margin-top: 20px;
  font-size: 0.9em;
  color: #999;
}

/* New styles for the copy button */
.copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: #f0f0f0;
  border: none;
  border-radius: 4px;
  color: #000;
  cursor: pointer;
  transition: background-color 0.3s;
}

.copy-btn:hover {
  background-color: #e9e9e9;
}

.copy-icon {
  width: 20px;
  height: 20px;
}

/* Styles for the modal */
.modal {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #5279a0cc;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  font-size: 0.9em;
  transition: opacity 0.5s;
}
