/* =============================================
   TopUpKuy - Tools CSS
   Upload ke: public_html/css/tools.css
   ============================================= */

/* Filter pills */
.t-pill {
  padding: 7px 18px;
  border: 1.5px solid #E5E7EB;
  border-radius: 20px;
  background: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
  cursor: pointer;
  transition: all .15s;
}
.t-pill.active,
.t-pill:hover {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

/* Tool card — Sejda style */
.t-card {
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  transition: all .18s;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.t-card:not([style*="cursor:default"]):hover {
  border-color: #93C5FD;
  box-shadow: 0 4px 16px rgba(59,130,246,.14);
  transform: translateY(-2px);
}

/* Icon box inside card */
.t-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.t-title {
  font-weight: 700;
  font-size: 14px;
  color: #111827;
  margin-bottom: 5px;
}

.t-desc {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.55;
}

.t-soon {
  font-size: 10px;
  background: #F3F4F6;
  color: #9CA3AF;
  padding: 2px 7px;
  border-radius: 20px;
  font-weight: 600;
  margin-left: 5px;
  vertical-align: middle;
}

/* Tool panels */
.tool-panel { display: none; }

/* Calculator buttons */
.calc-btn {
  padding: 13px 6px;
  border: 1.5px solid #E5E7EB;
  border-radius: 9px;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .12s;
  color: #111827;
  line-height: 1;
}
.calc-btn:hover { background: #F9FAFB; }
.calc-btn:active { transform: scale(.93); }

/* Watermark labels */
.wm-lbl {
  font-size: 11px;
  font-weight: 700;
  color: #6B7280;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Watermark icon buttons */
.wm-icon-btn {
  padding: 8px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all .15s;
  text-align: center;
}
.wm-icon-btn:hover { border-color: #D4881A; }
.wm-icon-active {
  background: #111827 !important;
  border-color: #111827 !important;
}

/* Excel tool sidebar */
.xls-nav{display:flex;align-items:center;gap:8px;padding:8px 10px;border-radius:8px;font-size:13px;font-weight:600;color:#374151;cursor:pointer;transition:.15s;margin-bottom:2px}
.xls-nav:hover:not([style*="cursor:default"]){background:#E5E7EB}
.xls-nav.active{background:#111827;color:#fff}
