/* Cigar Orders List Custom Styles */
.cigar-orders-wrapper {
	background-color: #fdfcf9;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.woocommerce-orders-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: #ffffff;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.woocommerce-orders-table thead {
	background: linear-gradient(to bottom, #e8d4b8, #d4c4a8);
}
.woocommerce-orders-table thead th {
	color: #5d4e37;
	padding: 15px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 1px;
	text-align: left;
}
.woocommerce-orders-table tbody td,
.woocommerce-orders-table tbody th {
	padding: 15px;
	color: #5d4e37;
	border-bottom: 1px solid #e8dcc8;
	vertical-align: middle;
}
.woocommerce-orders-table tbody tr:last-child td,
.woocommerce-orders-table tbody tr:last-child th {
	border-bottom: none;
}
.woocommerce-orders-table tbody tr:hover {
	background: #f9f5f0;
}
.woocommerce-orders-table a {
	color: #3d2817;
	text-decoration: none;
	transition: color 0.3s;
}
.woocommerce-orders-table a:hover {
	color: #d4af37;
}
.woocommerce-orders-table .button {
	background: linear-gradient(to bottom, #d4af37, #b8941f);
	color: #1a0f0a;
	padding: 8px 15px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: bold;
	font-size: 12px;
	transition: all 0.3s;
	border: none;
	display: inline-block;
}
.woocommerce-orders-table .button:hover {
	background: linear-gradient(to bottom, #e8c44d, #d4af37);
	box-shadow: 0 2px 8px rgba(212,175,55,0.4);
	color: #1a0f0a;
}
.woocommerce-pagination {
	margin-top: 20px;
	text-align: center;
}
.woocommerce-pagination .button {
	background: linear-gradient(to bottom, #d4af37, #b8941f);
	color: #1a0f0a;
	padding: 10px 25px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: bold;
	margin: 0 5px;
	transition: all 0.3s;
}
.woocommerce-pagination .button:hover {
	background: linear-gradient(to bottom, #e8c44d, #d4af37);
	box-shadow: 0 2px 8px rgba(212,175,55,0.4);
}
