/* ============================================================
   PX to REM Converter Styling - Scenic IT Solutions
   ============================================================ */

.rem-converter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.rem-card {
  background: #0d0d12;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
}

.rem-card label {
  font-size: 14px;
  font-weight: 700;
  color: #0099E5;
  display: block;
  margin-bottom: 8px;
}

.rem-card input {
  width: 100%;
  padding: 12px;
  background: #181824;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 20px;
  font-family: 'Courier New', monospace;
  border-radius: 8px;
}

.rem-table-container {
  max-height: 340px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-top: 14px;
}

.rem-table {
  width: 100%;
  border-collapse: collapse;
}

.rem-table th,
.rem-table td {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  text-align: left;
}

.rem-table th {
  background: rgba(0, 153, 229, 0.15);
  color: #0099E5;
  position: sticky;
  top: 0;
}

.rem-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.rem-copy-sm {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #a0a0ab;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  cursor: pointer;
}

.rem-copy-sm:hover {
  background: #0099E5;
  color: #fff;
}
