/* تنسيق القالب: زوايا مشطوفة + ظل خفيف */
.lpt-wrapper table,
.ipt-wrapper table {
  border-radius: 12px !important; /* الزوايا */
  border: 1px solid var(--wp--preset--color--primary, #007c3c);
  overflow: hidden;
  border-collapse: separate !important; /* لظهور الزوايا */
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
  background-color: var(--wp--preset--color--background, #ffffff);
  margin: 0 auto;
}
.lpt-wrapper table:hover,
.ipt-wrapper table:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}
.lpt-wrapper th,
.ipt-wrapper th {
  border-bottom: 2px solid var(--wp--preset--color--primary, #007c3c);
  background: var(--wp--preset--color--background, #f9f9f9);
  color: var(--wp--preset--color--primary, #007c3c);
  font-weight: 600;
  text-align: center;
  padding: 10px;
}
.lpt-wrapper td,
.ipt-wrapper td {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background 0.2s;
  text-align: center;
  padding: 8px;
}
.lpt-wrapper tr:hover td,
.ipt-wrapper tr:hover td { background: rgba(0,0,0,0.03); }
.lpt-wrapper tr:last-child td,
.ipt-wrapper tr:last-child td { border-bottom: none; }

/* مربع البحث */
.ipt-search-wrapper input[type="search"],
.lpt-wrapper input[type="search"] {
  border-radius: 20px;
  border: 1px solid #ccc;
  padding: 8px 12px;
  text-align: center;
  width: 240px;
  transition: all 0.2s ease-in-out;
}
.ipt-search-wrapper input[type="search"]:focus,
.lpt-wrapper input[type="search"]:focus {
  border-color: var(--wp--preset--color--primary, #007c3c);
  outline: none;
  box-shadow: 0 0 5px var(--wp--preset--color--primary, #007c3c);
}
