/* Resend.com Craft-Level Styling for Cookie Monitor */

::selection {
  background-color: #000000;
  color: #ffffff;
}

/* Hairline borders */
.hairline-b {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hairline-t {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hairline-r {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.hairline-l {
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.hairline {
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Smooth input transitions */
input, select, textarea, button {
  transition: all 0.15s ease-in-out;
}

/* Custom scrollbar for raw cookie modal */
textarea::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

textarea::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
}

textarea::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}

textarea::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}
