
:root {
    --brand-primary: #1565C0;
    --brand-primary-container: #D2E4FF;
    --brand-on-primary: #FFFFFF;
    --brand-on-primary-container: #001945;
    --brand-surface: #F8F9FF;
    --brand-surface-container-lowest: #FFFFFF;
    --brand-surface-container-low: #F1F3FB;
    --brand-surface-container: #E9ECFA;
    --brand-surface-container-high: #E3E6F7;
    --brand-on-surface: #171C2C;
    --brand-on-surface-variant: #42496A;
    --brand-outline-variant: #C3C7DB;
    --brand-success: #2E7D32;
    --brand-success-container: #E8F5E9;
    --brand-on-success-container: #1B5E20;
    --brand-warning: #E65100;
    --brand-warning-container: #FFF3E0;
    --brand-on-warning-container: #7F4E00;
    --brand-error: #B3261E;
    --brand-error-container: #F9DEDC;
    --brand-on-error-container: #8C1D18;
    --brand-font: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --top-bar-height: 64px;
}

html {
    min-height: 100%;
    font-size: 14px;
}

body {
    font-family: var(--brand-font);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

/* --- Top app bar (manager.rowtiming.com style) --- */
.top-app-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--top-bar-height);
    background-color: var(--brand-surface-container-low);
    border-bottom: 1px solid var(--brand-outline-variant);
    box-shadow: 0 1px 3px rgba(0, 0, 20, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 1000;
    font-family: var(--brand-font);
}

.top-bar-leading {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
}

.top-bar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 999px;
    color: var(--brand-on-surface);
    text-decoration: none;
}

.top-bar-brand:hover,
.top-bar-brand:focus {
    background-color: var(--brand-surface-container);
    color: var(--brand-on-surface);
    text-decoration: none;
}

.top-bar-symbol {
    height: 28px;
    width: 28px;
    object-fit: contain;
}

.top-bar-title {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.user-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--brand-surface-container);
    border-radius: 999px;
    padding: 8px 16px 8px 12px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--brand-on-surface-variant);
    white-space: nowrap;
}

.user-chip .glyphicon {
    color: var(--brand-primary);
    font-size: 16px;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: transparent;
    border: none;
    color: var(--brand-on-surface-variant);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0;
}

.btn-icon:hover,
.btn-icon:focus {
    background-color: var(--brand-surface-container-high);
    color: var(--brand-on-surface);
    text-decoration: none;
}

.btn-icon i,
.btn-icon .glyphicon {
    font-size: 18px;
}

/* --- Inline nav, visible in the bar --- */
.top-bar-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
    margin: 0 12px;
}

.top-bar-nav::-webkit-scrollbar {
    display: none;
}

/* --- "Modules" hover dropdown (Deposit / Scan meals), replaces plain Search --- */
.nav-dropdown {
    position: relative;
    display: flex;
    flex-shrink: 0;
}

.nav-dropdown-label {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 18px;
    border-radius: 999px;
    color: var(--brand-on-surface-variant);
    font-weight: 500;
    font-size: 1.1rem;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.nav-dropdown-label i {
    width: 16px;
    text-align: center;
}

.nav-dropdown-label:hover,
.nav-dropdown-label:focus {
    background-color: var(--brand-surface-container);
    color: var(--brand-on-surface);
    outline: none;
}

.nav-dropdown.open .nav-dropdown-label,
.nav-dropdown.active .nav-dropdown-label {
    background-color: var(--brand-primary-container);
    color: var(--brand-on-primary-container);
    font-weight: 600;
}

.nav-dropdown-menu {
    display: none;
    position: fixed;
    min-width: 200px;
    background-color: var(--brand-surface-container-lowest);
    border: 1px solid var(--brand-outline-variant);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(23, 28, 44, 0.16);
    padding: 6px;
    z-index: 30;
}

.nav-dropdown.open .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border-radius: 10px;
    color: var(--brand-on-surface-variant);
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.nav-dropdown-item i {
    width: 16px;
    text-align: center;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus {
    background-color: var(--brand-surface-container);
    color: var(--brand-on-surface);
    text-decoration: none;
    outline: none;
}

.nav-dropdown-item.active {
    background-color: var(--brand-primary-container);
    color: var(--brand-on-primary-container);
    font-weight: 600;
}

.main-content {
    padding-top: calc(var(--top-bar-height) + 20px);
    flex: 1 0 auto;
    width: 100%;
}

/* --- Footer --- */
.app-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-shrink: 0;
    margin-top: 40px;
    padding: 10px 24px;
    background-color: #01899F;
    color: #FFFFFF;
    font-family: var(--brand-font);
    font-size: 0.85rem;
    font-weight: 500;
}

.footer-logo {
    height: 24px;
    object-fit: contain;
}

/* ============================================================
   Global components — buttons, panels, tables, badges, modals,
   tabs. Shared across nearly every view, so restyling them here
   unifies the whole app in one pass.
   ============================================================ */

/* --- Buttons --- */
.btn {
    border-radius: 999px;
    border-width: 1px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: none;
    padding: 8px 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 20, 0.12);
    transition: filter 0.15s, box-shadow 0.15s, background-color 0.15s, border-color 0.15s;
}

.btn:hover,
.btn:focus {
    filter: brightness(1.06);
    box-shadow: 0 2px 6px rgba(0, 0, 20, 0.16);
    margin-top: 0;
    border-bottom-width: 1px;
}

.btn:active,
.btn.active {
    margin-top: 0;
    border-bottom-width: 1px;
}

.btn.btn-lg {
    padding: 12px 26px;
    font-size: 1rem;
    border-radius: 999px;
}

.btn.btn-sm {
    padding: 5px 14px;
    font-size: 0.82rem;
}

.btn.btn-xs {
    padding: 3px 9px;
    font-size: 0.78rem;
}

/* Icon-only buttons (row actions in tables, category/access toggles) look
   bulky as wide pills with the base .btn text-button padding — give them a
   tight, roughly circular footprint instead, whatever their size class. */
.btn:has(> i:only-child),
.btn:has(> span.glyphicon:only-child) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 11px;
    min-width: 34px;
}

/* Icon followed by a labelled <span> (not just a bare text node) is an
   icon+label button, not an icon-only one — give it a clean gap instead
   of relying on a literal space character, which flexbox above can trim. */
.btn > i:not(:only-child),
.btn > .glyphicon:not(:only-child) {
    margin-right: 6px;
}

.btn.btn-xs:has(> i:only-child),
.btn.btn-xs:has(> span.glyphicon:only-child) {
    padding: 4px 7px;
    min-width: 26px;
}

.btn.btn-sm:has(> i:only-child),
.btn.btn-sm:has(> span.glyphicon:only-child) {
    padding: 5px 9px;
    min-width: 30px;
}

.btn-primary {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #0D4EA3;
    border-color: #0D4EA3;
}

.btn-success {
    background-color: var(--brand-success);
    border-color: var(--brand-success);
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background-color: #1B5E20;
    border-color: #1B5E20;
}

.btn-warning {
    background-color: var(--brand-warning);
    border-color: var(--brand-warning);
    color: #fff;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
    background-color: #BF360C;
    border-color: #BF360C;
    color: #fff;
}

.btn-danger {
    background-color: var(--brand-error);
    border-color: var(--brand-error);
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
    background-color: var(--brand-on-error-container);
    border-color: var(--brand-on-error-container);
}

.btn-default {
    background-color: var(--brand-surface-container);
    border-color: var(--brand-outline-variant);
    color: var(--brand-on-surface-variant);
    box-shadow: none;
}

.btn-default:hover,
.btn-default:focus {
    background-color: var(--brand-surface-container-high);
    color: var(--brand-on-surface);
    border-color: var(--brand-outline-variant);
}

/* --- Toolbars (header actions, filter bars, selection bars) ---
   Flex row so buttons/selects/labels of differing intrinsic heights
   share one visual baseline instead of relying on manual padding-top
   offsets against Bootstrap's float-based grid columns. */
.toolbar-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

/* --- Panels (cards) --- */
.panel {
    border: 1px solid var(--brand-outline-variant);
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 20, 0.06);
    overflow: hidden;
}

.panel-heading {
    padding: 14px 20px;
}

.panel-primary > .panel-heading,
.panel-default > .panel-heading,
.panel-info > .panel-heading,
.panel-warning > .panel-heading,
.panel-danger > .panel-heading,
.panel-success > .panel-heading {
    background-color: var(--brand-surface-container-low);
    color: var(--brand-on-surface);
    border-color: var(--brand-outline-variant);
}

.panel-primary,
.panel-default,
.panel-info,
.panel-warning,
.panel-danger,
.panel-success {
    border-color: var(--brand-outline-variant);
}

.panel-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.panel-body {
    background-color: var(--brand-surface-container-lowest);
    padding: 20px;
}

/* --- Tables --- */
.table {
    font-size: 1rem;
}

.table i,
.table .glyphicon {
    font-size: 14px;
}

.table .btn.btn-xs {
    padding: 4px 8px;
}

.table .btn.btn-xs:has(> i:only-child),
.table .btn.btn-xs:has(> span.glyphicon:only-child) {
    padding: 5px 9px;
    min-width: 30px;
}

.table > thead > tr > th {
    color: var(--brand-on-surface-variant);
    font-weight: 600;
    border-bottom: 1px solid var(--brand-outline-variant);
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > thead > tr > th {
    border-color: var(--brand-outline-variant);
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: var(--brand-surface-container-low);
}

.table-hover > tbody > tr:hover {
    background-color: var(--brand-surface-container);
}

.prop-name {
    text-align: right;
    color: var(--brand-on-surface-variant);
    font-weight: 500;
}

.prop-val {
    font-weight: 700;
    color: var(--brand-on-surface);
}

/* --- Badges / labels --- */
.label {
    border-radius: 999px;
    padding: 4px 11px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.label-success {
    background-color: var(--brand-success-container);
    color: var(--brand-on-success-container);
}

.label-default {
    background-color: var(--brand-surface-container-high);
    color: var(--brand-on-surface-variant);
}

.label-warning {
    background-color: var(--brand-warning-container);
    color: var(--brand-on-warning-container);
}

.label-danger {
    background-color: var(--brand-error-container);
    color: var(--brand-on-error-container);
}

.label-primary {
    background-color: var(--brand-primary-container);
    color: var(--brand-on-primary-container);
}

/* --- Nav tabs --- */
.nav-tabs {
    border-bottom-color: var(--brand-outline-variant);
}

.nav-tabs > li > a {
    border-radius: 0;
    border: none;
    outline: none;
    color: var(--brand-on-surface-variant);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-tabs > li > a:hover {
    background-color: var(--brand-surface-container);
    border-color: transparent;
}

.nav-tabs > li > a:focus {
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.15);
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: var(--brand-primary);
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--brand-primary);
    font-weight: 600;
}

/* --- Modals --- */
.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 12px 32px rgba(0, 0, 20, 0.2);
}

.modal-header {
    border-bottom-color: var(--brand-outline-variant);
    padding: 18px 20px;
}

.modal-title {
    font-weight: 700;
    color: var(--brand-on-surface);
}

.modal-footer {
    border-top-color: var(--brand-outline-variant);
    padding: 14px 20px;
}

/* --- Form controls --- */
.form-control {
    border-radius: 10px;
    border-color: var(--brand-outline-variant);
    box-shadow: none;
}

.form-control:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.15);
}

/* --- digitalCards/index: card search page --- */
.search-page {
    display: flex;
    justify-content: center;
    padding: 8vh 20px 40px;
    font-family: var(--brand-font);
}

.search-card {
    width: 100%;
    max-width: 560px;
    background-color: var(--brand-surface-container-low);
    border: 1px solid var(--brand-outline-variant);
    border-radius: 24px;
    box-shadow: 0 6px 24px rgba(0, 0, 20, 0.08);
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.search-card-logo {
    max-width: 190px;
    width: 100%;
    height: auto;
}

.search-card-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-card-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--brand-on-surface-variant);
    margin: 0;
}

.search-card-row {
    display: flex;
    gap: 10px;
}

.search-card-input-wrap {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.search-card-input-icon {
    position: absolute;
    left: 16px;
    color: var(--brand-on-surface-variant);
    font-size: 16px;
    pointer-events: none;
}

.search-page .search-card-input.form-control {
    width: 100%;
    height: auto;
    padding: 14px 16px 14px 44px;
    border: 1.5px solid var(--brand-outline-variant);
    border-radius: 999px;
    font-size: 1.1rem;
    box-shadow: none;
    background-color: var(--brand-surface);
    color: var(--brand-on-surface);
}

.search-page .search-card-input.form-control:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.15);
}

.search-page .search-card-btn.btn {
    border-radius: 999px;
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 20, 0.15);
}

.search-page .search-card-btn.btn:hover,
.search-page .search-card-btn.btn:focus {
    background-color: #0D4EA3;
    border-color: #0D4EA3;
}

.search-page .search-card-new-btn.btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 14px 20px;
    border-radius: 999px;
    background-color: var(--brand-primary-container);
    border-color: transparent;
    color: var(--brand-on-primary-container);
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: none;
}

.search-page .search-card-new-btn.btn:hover,
.search-page .search-card-new-btn.btn:focus {
    background-color: var(--brand-primary);
    color: var(--brand-on-primary);
}

@media (max-width: 480px) {
    .search-card {
        padding: 28px 20px;
    }

    .search-card-row {
        flex-direction: column;
    }
}

#cardsList td:first-child {
    text-align: center;
}

/* Row-based lists that must never wrap to a second line; overflow scrolls
   horizontally inside their .table-responsive wrapper instead. */
#cardsList td,
#cardsList th,
#cardsAssignTable td,
#cardsAssignTable th {
    white-space: nowrap;
}

.container-fluid {
    max-width: 1600px;
    padding-left: 30px;
    padding-right: 30px;
}

.card-container {
    position: relative;
    left: 46px;
    top: -65px;
    font-family: 'Effra';
}

.id-photo {
    position: absolute;
    left: 9px;
    top: 96px;
    width: 115px;
    height: 121px;
}


.id-lastName {
    color: #000;
    font-weight: 900;
    left: 0px;
    width: 85mm;
    top: 51mm;
    position: absolute;
    height: 10mm;
    overflow: hidden;
    text-align: center;
    font-size: 26px;
}

.id-access-a, .id-access-m, .id-access-f, .id-access-amf {
    color: #000;
    font-weight: 400;
    left: 6mm;
    width: 73mm;
    top: 370px;
    position: absolute;
    height: 12mm;
    overflow: hidden;
    text-align: center;
    font-size: 37px;
    letter-spacing: 30px;
    text-indent: 30px;
    font-weight: bold;
}

.id-access-amf-legend {
    color: #555;
    font-weight: normal;
    left: 4mm;
    width: 77mm;
    top: 413px;
    position: absolute;
    height: 10mm;
    overflow: hidden;
    text-align: center;
    font-size: 10px;
}

.id-access-amf-legend span {
    font-weight: 500;
}

.id-access-amf-legend span:not(.id-access-amf-legend span:first-of-type) {
    margin-left: 4px;
}

.id-access-a {
    left: 6mm;
}

.id-access-m {
    left: 28mm;
}

.id-access-f {
    left: 58mm;
}

.id-line {
    color: #000;
    font-weight: bold;
    left: 6mm;
    width: 73mm;
    top: 62mm;
    position: absolute;
    height: 1px;
    /*border-bottom: 1px solid #000; */

}

.id-firstName {
    color: #000;
    font-weight: 500;
    left: 8mm;
    width: 69mm;
    top: 53mm;
    position: absolute;
    height: 29mm;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-size: 29px;
    border-bottom: 1px solid #000000;
    line-height: 1.1;
}

.id-qr-1 {
    left:5mm;
    width: 71mm;
    top: 49mm;
    position: absolute;
    height: 30mm;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.id-qr-1 img, .id-qr-2 img {
    width: 100%;
}

.id-qr-2 {
    left: 5mm;
    width: 71mm;
    top: 89mm;
    position: absolute;
    height: 30mm;
    overflow: hidden;
    display: flex;
    align-items: center;
}


.id-firstName span { 
    width: 100%;
    text-align: center;
    font-weight: bold;
}



.id-countryCode {
    position: absolute;
    left: 129px;
    top: 175px;
    height: 40px;
    text-align: center;
    width: 80px;
    font-weight: bold;
    color: #000;
    font-size: 25px;
}

.id-groupName {
    color: #000;
    font-weight: normal;
    left: 27px;
    width: 71mm;
    top: 87mm;
    position: absolute;
    height: 20px;
    overflow: hidden;
    text-align: center;
    font-size: 15px;
    display: flex;
    align-items: center;
    line-height: 1.0;
}
.id-groupName span {
    width: 100%;
    text-align: center;
}

.id-rtc {
    color: #000;
    font-weight: normal;
    left: 6mm;
    width: 70mm;
    top: 71mm;
    position: absolute;
    height: 35px;
    overflow: hidden;
    text-align: right;
    font-size: 15px;
}

.id-groupSubName {
    position: absolute;
    left: 45px;
    top: 241px;
    height: 22px;
    text-align: left;
    width: 80px;
    font-weight: normal;
    color: #000;
    font-size: 12px;
    overflow: hidden;
}

.id-access {
    position: absolute;
    left: 10px;
    top: 282px;
    height: 35px;
    text-align: center;
    width: 53px;
    font-weight: bold;
    color: #000;
    font-size: 25px;
    overflow: hidden;
}

.id-barcode {
    position: absolute;
    left: 24mm;
    top:130.5mm;
    height: 22px;
    text-align: center;
    width: 34mm;
    font-weight: bold;
    color: #000;
    font-size: 25px;
    overflow: hidden;
}

.id-red-dot {
    position: absolute;
    left: 157px;
    top: 228px;
    height: 30px;
    width: 30px;
}

.id-groupColor {
    position: absolute;
    left: 9px;
    top: 170px;
    height: 30px;
    text-align: center;
    width: 27px;
    font-weight: bold;
    font-size: 100px;
}

.file-indicator-print {
    width: 100% !important;
    text-align: center;
    padding: 3px;
    background-color: darkorange;
    display: block;
    color: #fff;
}

.prop-name {
    text-align: right;
}
.prop-val {
    font-weight: bold;
}

.icon {
    margin: 0px 10px;
}

.food-report-table tr .food-info {
    text-align: center;
}

.profile-image {
    width: 230px;
    height: 245px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/public/images/profile-placeholder.png');
}

.color-box {
    width: 20px;
    height: 22px;
    float: right;
    border-radius: 3px;
    border-color: #aaa;

}

.file-indicator {
    display: inline-block;
    padding: 3px 6px;
    font-size: 11px;
    background-color: #cc1111;
    margin-right: 5px;
    color: #fff;
    font-weight: bold;
}

.food-result-box {
    min-height: 250px;
    border: 3px solid #eee;
    border-radius: 20px;
    vertical-align: center;
    text-align: center;
}

.embed-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    border: none;
    width: 100%;
}

.zoneIndicator {
    display: inline-block;
    margin-right: 10px;
    background-color: #444;
    padding: 3px 10px;
    color: #fff;
    border-radius: 3px; 
}

.zoneChkbx {
    display: inline-block;
    margin: 0px !important;
    padding: 0px !important;
    margin-top: 0px !important;
    width: 45px;
    height: 24px;
    vertical-align: top;
}

.zone-btn-group {
    display: flex;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.zone-btn-group > .btn {
    float: none;
    flex: 0 0 auto;
    padding: 6px 5px;
    font-size: 12.5px;
}

.zone-btn-group .zoneChkbx {
    width: 18px;
    margin-right: 6px !important;
}

.zone-btn-group .zoneIndicator {
    margin-right: 3px;
    padding: 3px 6px;
}

.embed-box>.info>i {
    padding: 40px 0px 0px 0px;
    font-size: 190px !important;
}

.embed-box>.info>h1 {
    padding: 40px 0px 0px 0px;
    font-size: 70px !important;
    font-weight: bold;
}


.food-result-box>.info>i {
    color: #fff;
    padding: 40px 0px 0px 0px;
    font-size: 120px;
}

.food-result-box>.info>h1 {
    color: #fff;
}

.food-success {
    background-color: #28b62c;
    display: none;
}

.food-failed {
    background-color: #b60015;
    display: none;
}

.visible-result {
    display: block !important;
}

progress[value] {
    /* Reset the default appearance */
    -webkit-appearance: none;
    appearance: none;

    width: 115px;
    height: 20px;
}

progress[value]::-webkit-progress-bar {
    background-color: #eee;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}

progress[value]::-webkit-progress-value {
    background-image:
            -webkit-linear-gradient(-45deg,
            transparent 33%, rgba(0, 0, 0, .1) 33%,
            rgba(0,0, 0, .1) 66%, transparent 66%),
            -webkit-linear-gradient(top,
            rgba(255, 255, 255, .25),
            rgba(0, 0, 0, .25)),
            -webkit-linear-gradient(left, #09c, #f44);

    border-radius: 2px;
    background-size: 35px 20px, 100% 100%, 100% 100%;
}


/* -- DIGITAL CARDS READER -- */
#reader-container {
    display: none;
    margin-top: 20px;
}

#reader {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.result-box {
    margin-top: 20px;
    padding: 15px;
    background-color: #e9ecef;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    word-break: break-all;
}

.card-container-chrome {
    margin-left: 30px;
    margin-top: -65px;
    font-family: 'Effra'; font-weight: bold;"
}

/* ---- CHROME OS SETUP ----- */
/*
.card-container-chrome {
    transform: rotate(180deg);
    transform-origin: 188px 440px;
}*/