.customer__form {
	margin-bottom: 4rem;
	max-width: 500px;
}

.customer__menu button {
	font-family: "gotham_roundedbook", serif;
}

.customer__form button {
	margin: 20px 0;
}

.customer__form h4 {
	margin: 25px 0;
}

.customer__menu button {
	cursor: pointer;
	padding: 13px 12px;
	width: 100%;
	text-align: start;
	color: #fff;
	transition: .3s all;
	border-radius: 5px;
}

.customer__menu button.active,
.customer__menu button:hover {
	background: rgb(77, 91, 52);
}

.customer__menu button.active {
	font-weight: 700;
}

.customer h4 {
	margin: 0 0 25px;
}

.customer__menu {
	background: rgb(129, 151, 86);
	border-radius: 5px;
}

.container--customer {
	margin-bottom: 4rem;
}

@media(min-width: 992px) {
	.customer__form {
		width: 100%;
	}

	.customer__menu {
		min-width: 200px;
	}
	.container--customer {
		display: flex;
		gap: 40px;
	}
}

.customer th, 
.customer td {
	padding: 5px 15px;
	text-align: left;
}

.customer th {
	border-bottom: 1px solid #d3d3d3;
}

.customer .align--right {
	text-align: end;
}

.customer__orders {
	font-family: 'Arial', sans-serif;
	background-color: #f8f9fa;
	color: #333;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	width: 100%;
	margin-bottom: 40px;
	overflow: auto;
}

.orders__repeat {
	text-align: end;
}

.orders__repeat .button {
	padding: 1rem 1rem;
	min-width: 100px;
}

.table__header-row th {
	padding: 10px;
}

.orders__table {
	width: 100%;
	border-collapse: collapse;
}

.order__item td {
	padding: 10px;
	border-bottom: 1px solid #dee2e6;
}

.order__processing {
	color: #0008ff;
}

.order__confirmed {
	color: #1cce00;
}

.subrow span {
	padding: 0 10px;
}

.order__item td {
	text-wrap: nowrap;
}

.subrow li {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	padding: 10px;
}

.subrow__heading td {
	padding-left: 20px;
	font-weight: 600;
	border-top: none;
}

.subrow td {
	background-color: #f9f9f9;
}

td svg {
	width: 20px;
	height: 20px;
	cursor: pointer;
}

td svg.active {
	transform: rotate(180deg);
}

.align--right {
	text-align: right;
}

.align--center {
	text-align: center;
}

.repeat__order-cell {
	display: flex;
	align-items: center;
	justify-content: center;
}

.repeat__link {
	text-decoration: none;
	padding: 5px 10px;
	border-radius: 5px;
	transition: background-color 0.3s, color 0.3s;
}

.repeat__link:hover {
	color: white;
}

@media(max-width: 992px) {
	.customer__menu {
		margin-bottom: 40px;
	}
}