/* fonts */
.carlito-regular {
	font-family: "Carlito", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.carlito-bold {
	font-family: "Carlito", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.carlito-regular-italic {
	font-family: "Carlito", sans-serif;
	font-weight: 400;
	font-style: italic;
}

.carlito-bold-italic {
	font-family: "Carlito", sans-serif;
	font-weight: 700;
	font-style: italic;
}

/* forms */
input[type=text],
input[type=date],
input[type=password],
textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 0.8rem;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 1rem;
	background: white;
}

textarea {
	min-height: 120px;
	resize: vertical;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	appearance: textfield;
	-moz-appearance: textfield;
}

input:not([type=checkbox]) {
	display: block;
}

.seal-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.field-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.field {
    display: flex;
    flex-direction: column;
    width: max-content;
}

.checkbox-field {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
}

input[type=submit] {
	width: 100%;
	padding: 1rem;
	font-size: 1.1rem;
	font-weight: bold;
	border: none;
	border-radius: 10px;
	background: #111;
	color: white;
	margin-top: 1rem;
}

/* main */
.wrapper {
	max-width: 700px;
	margin: 0 auto;
}

body {
	font-family: Carlito, Verdana, sans-serif;
	font-size: 1.1rem;
	line-height: 1.4;
	background: #f3f4f6;
	color: #222;
	margin: 0;
	padding: 1rem;
}

.workflow-section {
	background: white;
	border-radius: 10px;
	padding: 1rem;
	margin-bottom: 1rem;
	box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

h1 {
	margin-top: 0;
	font-size: 1.8rem;
}

h2 {
	margin-top: 0;
	font-size: 1.4rem;
}

h3 {
	margin-top: 0;
	margin-bottom: 1rem;
	font-size: 1.15rem;
}

/* Checkboxes */
/* Make sure other checkbox styles above don't conflict. */
.check-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.8rem 0;
	border-bottom: 1px solid #eee;
	font-size: 1.1rem;
}

.check-item:last-child {
	border-bottom: none;
}

.check-item input[type=checkbox] {
	width: 1.3rem;
	height: 1.3rem;
}


.page-header {
	margin-bottom: 1.5rem;
}

.page-header p {
	margin-top: -0.5rem;
	color: #666;
}

label {
	display: block;
	margin-bottom: 1rem;
	font-weight: 700;
}


.small {
	font-size: 80%;
}

.print-button,
.login-button {
	width: 100%;
	padding: 1rem;
	font-size: 1.1rem;
	font-weight: bold;
	border: none;
	border-radius: 10px;
	background: #111;
	color: white;
	margin-bottom: 1rem;
}

/* outbound store nums toggle */
.outbound {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 0.3s ease,
					max-height 0.3s ease;
}

.outbound.visible {
	opacity: 1;
	max-height: 100px;
}
/* end outbound stores toggle */

@media (max-width: 600px) {

	body {
		font-size: 1.15rem;
		padding: 0.75rem;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.25rem;
	}

	.workflow-section {
		padding: 1.25rem;
	}

	.print-button {
		font-size: 1.2rem;
		padding: 1.1rem;
	}
}