body {
  font-family: Arial, sans-serif;
  background: #f2f2f2;
  margin: 0;
  padding: 20px;
}

.container {
  background: white;
  max-width: 600px;
  margin: auto;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

textarea {
  width: 100%;
  height: 300px;
  margin-top: 10px;
  padding: 5px;
  font-size: 16px;
}

button {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

#cevapKutusu {
  margin-top: 20px;
  background: #eaf4ff;
  padding: 15px;
  border-radius: 5px;
  white-space: pre-wrap;
}

#yukleniyor {
  background-color: #fff3cd;
  padding: 12px;
  margin-top: 20px;
  border: 1px solid #ffeeba;
  border-radius: 5px;
  font-weight: bold;
  color: #856404;
}

.container {
  position: relative; /* ekle! */
}

#kopyalaBtn {
  position: absolute;
  right: 10px;
  bottom: 79px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}


#kopyaBildirim {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: 90px;
  background-color: #444;
  color: white;
  padding: 6px 12px;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  font-size: 13px;
}
