body {
  font-family: "Segoe UI", sans-serif;
  background: #f4f4f4;
  margin: 0;
  padding: 20px;
  text-align: center;
  direction: rtl; /* لدعم العربية */
}

.container {
  max-width: 800px;
  margin: auto;
}

textarea {
  width: 100%;
  font-size: 1.2em;
  padding: 10px;
  margin-top: 10px;
  resize: none;
  border-radius: 8px;
  border: 1px solid #ccc;
}

#voiceBtn {
  margin: 10px 0;
  padding: 10px 20px;
  font-size: 1em;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#voiceBtn:disabled {
  background-color: gray;
}

.keyboard {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.keyboard-row {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.key {
  border: 1px solid #ccc;
  background: #fff;
  padding: 12px 18px;
  margin: 4px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 1.1em;
  user-select: none;
  transition: background 0.2s, color 0.2s;
  min-width: 40px;
}

.key:hover {
  background: #007bff;
  color: white;
}

.control-key {
  background-color: #444;
  color: #fff;
  font-weight: bold;
  min-width: 60px;
}

.active-key {
  background-color: #28a745 !important;
  color: #fff !important;
  box-shadow: 0 0 10px #28a745;
}
.footer {
  margin-top: 40px;
  padding: 20px;
  background-color: #f0f0f0;
  font-size: 0.95em;
  color: #333;
  border-top: 1px solid #ccc;
  text-align: center;
}

.footer .social-icons {
  margin-top: 10px;
}

.footer .social-icons a {
  margin: 0 8px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.footer .social-icons img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.footer .social-icons a:hover {
  transform: scale(1.2);
}
