/* order_management/style/style.css */
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

header,
footer {
	width: 100%;
}

.container {
	flex: 1;
}

.login-form {
	width: 100%;
	max-width: 400px;
	padding: 15px;
	background: #ffffff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}
.bg-header
{
    background-color:#ed1c24;
}
.bg-footer
{
    background-color:#000;
}

.bg-footer p
{
    color:#fff;
}

@media print {
	.card-body {
		width: 210mm;
		/* Kích thước A4 chiều rộng */
		height: 297mm;
		/* Kích thước A4 chiều cao */
		margin: 0 auto;
		/* Canh giữa khi in */
		padding: 20mm;
		/* Khoảng cách lề */
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
		/* Đổ bóng cho card */
	}
}

.search-results {
	position: absolute;
	z-index: 1000;
	background-color: white;
	width: 100%;
}

.search-results .list-group-item {
	cursor: pointer;
}

.form-label-group {
	display: flex;
	align-items: center;
}

.form-label-group label {
	margin-right: 10px;
}

.search-results .highlight {
	background-color: #007bff;
	color: white;
}
.input-as-label {
    border: none;
    background-color: transparent;
    outline: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.disabled-button {
    opacity: 0.5; /* Giảm opacity để làm mờ */
    pointer-events: none; /* Vô hiệu hóa các sự kiện pointer (click, hover, etc.) */
}
#totalAllPay
{
    color: red;
    font-weight: bold;
}
#totalAll,#totalAllPay, #discountOther, #discountPay
{
    text-align: right;
    display: block;
}

.total, .discount-pay, .discount-other, .discount-amount, .product-price
{
    text-align: right;
    display: block;
}
.nav-link
{
    color:#fff;
}
.btn-outline 
{
        border: 1px solid #fff;
    color: #fff;
    margin: 5px 0 5px 0;
}
