/* استایل کلی کانتینر */
.wotl-wrapper {
  background: #fff;
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 10px;
  max-width: 100%;
}
.wotl-title { text-align: center; margin-bottom: 20px; }

/* مدیریت باکس‌های بالا */
.wotl-topbox {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.wotl-count,
.wotl-search,
.wotl-post-link {
  flex: 1 1 300px;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #efefef;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* تنظیمات باکس جستجو */
.wotl-search { flex-direction: column; }
.wotl-search form { display: flex; gap: 10px; flex-wrap: wrap; width: 100%; justify-content: center; }
.wotl-search input { flex: 1; padding: 8px; border: 1px solid #ccc; border-radius: 6px; }

/* تنظیمات باکس تعداد */
.wotl-count { gap: 6px; }
.wotl-count strong { font-size: 24px; }

/* یکسان‌سازی دقیق دکمه‌ها */
.wotl-search button,
.wotl-post-link a {
  background: #c72437 !important;
  color: #fff !important;
  border: none !important;
  padding: 8px 15px !important;
  border-radius: 6px !important;
  cursor: pointer;
  text-decoration: none !important;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}

.wotl-search button:hover,
.wotl-post-link a:hover {
  background: #a51d2d !important;
}

/* استایل‌های باقی‌مانده */
.wotl-result, .wotl-error { margin: 15px 0; padding: 10px; border-radius: 6px; }
.wotl-result { background: #64a39b; color: #fff; }
.wotl-error { background: #64a39b; color: #fff; }

.wotl-btn-wrap { text-align: center; margin: 15px 0; }
.wotl-btn {
  display: inline-block;
  background: #c72437;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

.wotl-table-wrap { overflow-x: auto; }
.wotl-table { width: 100%; border-collapse: collapse; }
.wotl-table th, .wotl-table td { border: 1px solid #eee; padding: 8px; text-align: center; }
