:root {
    --primary-color: #ff6b35;
    --secondary-color: #2b9348;
}

.order-status-badge {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}
.status-pending {
    background-color: #ffc107;
    color: #000;
}
.status-confirmed {
    background-color: #17a2b8;
    color: #fff;
}
.status-delivered {
    background-color: #28a745;
    color: #fff;
}
.status-preparing {
    background-color: #fd7e14;
    color: #fff;
}
.dashboard-card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.dashboard-card:hover {
    transform: translateY(-5px);
}
.table-status {
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 12px;
}
.table-available {
    background-color: #28a745;
    color: white;
}
.table-occupied {
    background-color: #dc3545;
    color: white;
}
.table-reserved {
    background-color: #ffc107;
    color: black;
}
.order-type-badge {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}
.type-dinein {
    background-color: #6f42c1;
    color: white;
}
.type-takeaway {
    background-color: #20c997;
    color: white;
}
.type-delivery {
    background-color: #fd7e14;
    color: white;
}
.user-role-badge {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}
.role-admin {
    background-color: #dc3545;
    color: white;
}
.role-manager {
    background-color: #6f42c1;
    color: white;
}
.role-cashier {
    background-color: #20c997;
    color: white;
}
.role-sales {
    background-color: #fd7e14;
    color: white;
}
.invoice-box {
    max-width: 800px;
    margin: auto;
    padding: 30px;
    border: 1px solid #eee;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    line-height: 24px;
    font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
    color: #555;
}
.invoice-box table {
    width: 100%;
    line-height: inherit;
    text-align: left;
}
.invoice-box table td {
    padding: 5px;
    vertical-align: top;
}
.invoice-box table tr td:nth-child(2) {
    text-align: right;
}
.invoice-box table tr.top table td {
    padding-bottom: 20px;
}
.invoice-box table tr.top table td.title {
    font-size: 45px;
    line-height: 45px;
    color: #333;
}
.invoice-box table tr.information table td {
    padding-bottom: 40px;
}
.invoice-box table tr.heading td {
    background: #eee;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
}
.invoice-box table tr.details td {
    padding-bottom: 20px;
}
.invoice-box table tr.item td {
    border-bottom: 1px solid #eee;
}
.invoice-box table tr.item.last td {
    border-bottom: none;
}
.invoice-box table tr.total td:nth-child(2) {
    border-top: 2px solid #eee;
    font-weight: bold;
}
.printer-settings {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}
.printer-test {
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
}
.sidebar-menu > li > a {
    border-left: 3px solid transparent;
    transition: all 0.3s;
}
.sidebar-menu > li > a:hover {
    border-left-color: var(--primary-color);
}
.sidebar-menu > li > a.active {
    border-left-color: var(--primary-color);
    font-weight: bold;
}
@media print {
    .invoice-box {
        box-shadow: none;
        border: none;
        max-width: 100%;
        padding: 0;
    }
    .no-print {
        display: none;
    }
}
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
}