/* My Page Receipt Styles */
.sh-receipt-actions {
	margin-top: 15px;
	padding: 10px;
	background-color: #f9f9f9;
	border: 1px solid #eee;
	border-radius: 4px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.receipt-column {
	vertical-align: middle;
	width: 200px;
	min-width: 200px;
}

.sh-address-field {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
}

.sh-input-group {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
}

.sh-input-group > label,
.sh-input-group > .sh-label {
	font-weight: bold;
	white-space: nowrap;
}

.sh-radio-label {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 16px;
	cursor: pointer;
	font-weight: normal !important;
	margin-right: 10px;
}

.sh-radio-label input[type="radio"] {
	margin: 0;
}

.sh-address-field input[type="text"] {
	width: 150px;
	flex-grow: 1;
	padding: 5px 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
}

.sh-update-address-btn {
	width: auto !important;
	min-width: 80px !important;
	height: 32px !important;
	line-height: 1 !important;
	padding: 4px 10px !important;
	font-size: 13px !important;
	white-space: nowrap;
	flex: 0 0 auto;
	font-weight: bold !important;
}

.sh-receipt-info {
	font-size: 15px;
}

.sh-receipt-button {
	margin-top: 10px;
}

.sh-receipt-button form {
	margin: 0;
	display: flex;
	justify-content: center;
}

.sh-download-receipt-btn {
	padding: 8px 15px !important;
	font-weight: bold !important;
	line-height: 0 !important;
}

@media (max-width: 768px) {
	.sh-receipt-actions {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.sh-address-field {
		width: 100%;
		flex-wrap: wrap;
	}
	
	.sh-address-field input[type="text"] {
		flex-grow: 1;
	}
}
