/* تنسيقات نموذج إدخال رقم الحساب */
.wcpec-lookup-box {
  max-width: 500px;
  margin: 30px auto;
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-family: 'Cairo', sans-serif;
}

.wcpec-lookup-box input {
  padding: 10px;
  width: 100%;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}

.wcpec-lookup-button {
  padding: 10px 30px;
  background-color: #6a1b9a;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s;
  cursor: pointer;
}

.wcpec-lookup-loader .loader-circle {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #6a1b9a;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.wcpec-lookup-result {
  margin-top: 15px;
  font-weight: bold;
  color: #d32f2f;
}
