body {
  font-family: 'Segoe UI', sans-serif;
  direction: rtl;
  text-align: center;
  background: linear-gradient(to bottom, #fdf6e3, #e0f7fa);
  margin: 0;
  padding: 30px;
}

h1 {
  color: #ff6f61;
  font-size: 36px;
  margin-bottom: 10px;
}

h2 {
  color: #555;
  margin-bottom: 30px;
}

input {
  padding: 10px;
  font-size: 18px;
  width: 80%;
  max-width: 400px;
  border: 2px solid #ccc;
  border-radius: 12px;
  margin-bottom: 20px;
}

.result-box {
  background: #fff;
  border: 2px dashed #aaa;
  border-radius: 15px;
  padding: 20px;
  display: inline-block;
  min-height: 60px;
  font-size: 24px;
  color: #333;
  max-width: 80%;
  word-wrap: break-word;
}

.note {
  margin-top: 30px;
  font-size: 16px;
  color: #666;
}


.hint-box {
  margin-top: 25px;
  padding: 15px;
  background-color: #fefbd8;
  border-left: 6px solid #ffc107;
  border-radius: 10px;
  font-size: 16px;
  text-align: right;
}


.hint-toggle {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #ffeb3b;
  color: #333;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}
.hint-toggle:hover {
  background-color: #ffe033;
}

.hover-zoom {
  transition: transform 0.3s ease;
}
.hover-zoom:hover {
  transform: scale(1.3);
}

.clear-button {
  margin-right: 10px;
  padding: 8px 14px;
  background-color: #e57373;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
}
.clear-button:hover {
  background-color: #d32f2f;
}

.clickable-hint {
  cursor: pointer;
  color: #0277bd;
  font-weight: bold;
}
.clickable-hint:hover {
  text-decoration: underline;
}
 .nav-link {
      display: inline-block;
      margin-top: 30px;
      padding: 10px 20px;
      background-color: #4caf50;
      color: white;
      border-radius: 10px;
      text-decoration: none;
    }
	.progress-container {
  width: 100%;
  background-color: #eee;
  border-radius: 10px;
  margin: 20px auto;
  height: 25px;
  max-width: 400px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  line-height: 25px;
  text-align: center;
  color: white;
  font-weight: bold;
  border-radius: 10px;
  transition: width 0.5s ease;
}
