/* ══════════════════════════════════════════════════════
   dhr-filetype.css
   Library สำหรับแสดง icon ตามประเภทไฟล์ / external link
   ใช้คู่กับ dhr-filetype.php
   ══════════════════════════════════════════════════════ */

/* ── Wrapper (SVG box + label ใต้) ── */
.dhr-ft-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Icon box ── */
.dhr-ft-box {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Label ใต้ box ── */
.dhr-ft-label {
  font-size: 9px;
  font-weight: 700;
  -webkit-text-stroke: 0.5px currentColor;
  text-stroke: 0.5px currentColor;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* ── External link — icon globe แบบ outline ── */
.dhr-ft-box.dhr-ft-link {
  background: #eff8ff;
}
.dhr-ft-label.dhr-ft-link {
  color: #0369a1;
}
