  /* Layout */
.signature-generator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
.signature-form div {
	margin-bottom: 10px;
}

.signature-form label {
	font-size: 14px;
	font-weight: 500;
}

.signature-form h2 {
	font-size: 24px;
}
.signature-form h3 {
	font-size: 20px;
	margin-bottom: 10px;
}


.signature-preview {
  /* flex: 1; */
  border: 1px solid #ccc;
  padding: 20px;
  background: #fafafa;
}
#signature-output {
	margin-bottom: 20px;
}
.copy-btn {
	font-size: 14px;
	padding: 6px 16px;
	cursor: pointer;
	border-radius: 10px;
	color: #333333;
	margin-bottom: 20px;
}
.copy-btn:hover {
	background-color: #dddddd;
}

/* Preview text (for on-screen display only) */
.sig-name-line {
  font-family: 'Aptos', sans-serif;
  /* font-weight: 700; */
  font-size: 11pt;
  /* text-transform: uppercase; */
}
.sig-name {
  font-family: 'Aptos', sans-serif;
  font-weight: 700;
  font-size: 12pt;
  text-transform: uppercase;
}


.sig-title {
  font-family: 'Aptos', sans-serif;
  font-style: italic;
  font-size: 11pt;
  white-space: pre-line;
  margin-bottom: 10px;
}
.sig-address {
  font-family: 'Aptos', sans-serif;
  font-size: 11pt;
  white-space: pre-line;
}
.sig-phone-url {
  font-family: 'Aptos', sans-serif;
  font-size: 11pt;
  white-space: pre-line;
}
.sig-appt-remote {
  font-family: 'Aptos', sans-serif;
  font-size: 11pt;
  white-space: pre-line;
  margin-bottom: 10px;
}
.sig-logo {
	margin-bottom: 6px;
}


.col-2 {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 1fr;
}



#remoteDaysWrapper {
	display: flex;
	gap: 8px;
}

/* Default box styling */
.remote-day-box {
	width: 40px;
	height: 40px;
	border: 1px solid var(--true-blue); /* ÌÇÐÄvlog¹ÙÍø True Blue? adjust as needed */
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	user-select: none;
	font-weight: bold;
	background: #fff;
	transition: 0.2s;
}

/* Highlight when "checked" */
.remote-day-box.active {
	background: var(--true-blue);        /* ÌÇÐÄvlog¹ÙÍø True Blue */
	color: #fff;
}
