/* ============================================================
   LICH MO THUONG
   ============================================================ */

.lmt-center {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lmt-wrap,
.lmt-note-box {
    background: #f3f4f6;
    border: 1px solid #cfd5de;
    border-radius: 8px;
}

.lmt-wrap {
    padding: 14px;
}

.lmt-title {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.2;
    color: #0f2347;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lmt-title-ico {
    color: #ef4444;
    display: inline-flex;
    width: 24px;
    height: 24px;
}

.lmt-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.lmt-tab {
    border: 1px solid #ccd3dd;
    border-radius: 7px;
    background: #f1f5f9;
    color: #556070;
    font-size: 16px;
    font-weight: 700;
    padding: 7px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.lmt-tab-ico {
    width: 14px;
    height: 14px;
    display: inline-flex;
}

.lmt-tab[data-color="red"].is-active {
    background: #e8262c;
    border-color: #8b1014;
    color: #fff;
}

.lmt-tab[data-color="blue"].is-active {
    background: #2f63d8;
    border-color: #1f3f8f;
    color: #fff;
}

.lmt-tab[data-color="green"].is-active {
    background: #1fa648;
    border-color: #0f5e27;
    color: #fff;
}

.lmt-tab[data-color="violet"].is-active {
    background: linear-gradient(90deg, #8b35d7, #9b3de6);
    border-color: #5a2489;
    color: #fff;
}

.lmt-tab[data-color="orange"].is-active {
    background: #d87900;
    border-color: #6f3e00;
    color: #fff;
}

.lmt-panel {
    display: none;
    border: 1px solid #cfd5de;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.lmt-panel.is-active {
    display: block;
}

.lmt-panel-head {
    margin: 0;
    padding: 10px 14px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.lmt-panel-head.is-red {
    background: #e8262c;
}

.lmt-panel-head.is-blue {
    background: #2f63d8;
}

.lmt-panel-head.is-green {
    background: #1fa648;
}

.lmt-panel-head.is-violet {
    background: linear-gradient(90deg, #8b35d7, #9b3de6);
}

.lmt-panel-head.is-orange {
    background: #d87900;
}

.lmt-table {
    width: 100%;
    border-collapse: collapse;
}

.lmt-table th,
.lmt-table td {
    border-bottom: 1px solid #dde2ea;
    padding: 10px 12px;
    font-size: 15px;
    color: #1f2937;
    text-align: left;
}

.lmt-table th {
    background: #f8fafc;
    font-weight: 700;
}

.lmt-table td.is-day,
.lmt-table td.is-time,
.lmt-table td.is-product {
    white-space: nowrap;
}

.lmt-table td.is-day,
.lmt-table td.is-time,
.lmt-table td.is-product a {
    color: #e3262f;
    font-weight: 700;
    text-decoration: none;
}

.lmt-table th:last-child,
.lmt-table td:last-child {
    text-align: center;
    width: 96px;
}

.lmt-chip {
    display: inline-flex;
    align-items: center;
    height: 28px;
    border-radius: 4px;
    border: 1px solid #d6dde7;
    background: #f4f6f9;
    color: #334155;
    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    padding: 0 8px;
    margin: 0 4px 4px 0;
}

.lmt-chip.is-outline {
    border-color: #f3a3a3;
    color: #e3262f;
    background: #fff;
}

.lmt-note-box {
    margin-top: 14px;
    padding: 14px;
}

.lmt-note-box h3 {
    margin: 0 0 10px;
    font-size: 30px;
    color: #0f2347;
}

.lmt-note-box p {
    margin: 0 0 8px;
    font-size: 16px;
    color: #1f2937;
}

.lmt-note-box p.is-note {
    margin-top: 10px;
    color: #5b6472;
    font-style: italic;
}

@media (max-width: 992px) {
    .lmt-title {
        font-size: 28px;
    }

    .lmt-panel-head {
        font-size: 22px;
    }

    .lmt-table th,
    .lmt-table td {
        font-size: 16px;
    }

    .lmt-chip {
        font-size: 14px;
    }

    .lmt-note-box h3 {
        font-size: 24px;
    }

    .lmt-note-box p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .lmt-wrap {
        padding: 12px;
    }

    .lmt-title {
        font-size: 28px;
    }

    .lmt-tabs {
        gap: 5px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lmt-tab {
        font-size: 14px;
        padding: 7px 6px;
        justify-content: center;
    }

    .lmt-tab-ico {
        width: 12px;
        height: 12px;
    }

    .lmt-panel {
        overflow-x: auto;
    }

    .lmt-panel-head {
        font-size: 20px;
        min-width: 520px;
    }

    .lmt-table {
        table-layout: auto;
        min-width: 520px;
    }

    .lmt-table th,
    .lmt-table td {
        font-size: 13px;
        padding: 8px 6px;
        vertical-align: top;
    }

    .lmt-table th:first-child,
    .lmt-table td:first-child {
        width: 74px;
    }

    .lmt-table th:last-child,
    .lmt-table td:last-child {
        width: 76px;
    }

    .lmt-table td.is-product {
        width: 96px;
    }

    .lmt-table td:nth-child(2) {
        white-space: normal;
    }

    .lmt-chip {
        height: 24px;
        font-size: 12px;
        margin: 0 3px 3px 0;
        padding: 0 6px;
        white-space: nowrap;
    }

    .lmt-note-box h3 {
        font-size: 22px;
    }

    .lmt-note-box p {
        font-size: 14px;
    }
}
