/* === LH Order Admin Assistant Styles === */

.lhoa-toggle-assist {
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    min-width: 40px;
    text-align: center;
    transition: background-color 0.2s ease;
}

.lhoa-btn-yes {
    background-color: #28a745;
    color: white;
}

.lhoa-btn-no {
    background-color: #dc3545;
    color: white;
}

.lhoa-btn-yes:hover {
    background-color: #218838;
}
.lhoa-btn-no:hover {
    background-color: #c82333;
}

.lhoa-date {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 4px 6px;
    width: 120px;
    text-align: center;
}

/* Make editable fields stand out slightly */
.editable {
    border-bottom: 1px dashed #ccc;
    min-width: 80px;
}
.editable:focus {
    outline: none;
    background-color: #f7f7f7;
}

/* DataTables Buttons */
.dt-buttons {
    margin-bottom: 10px;
}
.dt-button {
    background: #0073aa;
    border: none;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    margin-right: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.dt-button:hover {
    background: #005177;
}

/* Optional: improve table readability */
#lhoa-table {
    width: 100%;
    border-collapse: collapse;
}
#lhoa-table th,
#lhoa-table td {
    padding: 8px 10px;
    border: 1px solid #e2e2e2;
}
#lhoa-table th {
    background-color: #f4f4f4;
    font-weight: 600;
}

/* Print view adjustments */
@media print {
    body {
        background: #fff;
    }
    .dt-buttons,
    .dataTables_filter,
    .dataTables_length,
    .dataTables_info,
    .dataTables_paginate {
        display: none !important;
    }
    table {
        font-size: 11pt;
    }
}

.lhoa-btn-pack {
    background-color: #0073aa;
    color: #fff;
}

.lhoa-btn-pack:hover {
    background-color: #005a87;
}

/* Pack initial (blue) already existed as lhoa-btn-pack */
.lhoa-btn-pack {
    background-color: #0073aa;
    color: #fff;
}
.lhoa-btn-pack:hover { background-color: #005a87; }

/* Confirm state (orange-ish) */
.lhoa-btn-confirm {
    background-color: #ff9800 !important;
    color: #000000;
}
.lhoa-btn-confirm:hover { background-color: #e68a00; }

/* Packed (green) already exists as lhoa-btn-yes */
.lhoa-btn-yes {
    background-color: #28a745;
    color: white;
}

.lhoa-btn-blue {
    background-color: #007bff;
    color: white;
}
.lhoa-btn-orange {
    background-color: #fd7e14;
    color: rgb(0, 0, 0);
}
.lhoa-btn-green {
    background-color: #28a745;
    color: white;
}

