@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ============================================================
   ESS SPLIT HERO SECTION
   ============================================================ */

/* Split Screen Container */
.ess-split-container {
    display: flex;
    flex-wrap: wrap;
    min-height: calc(100vh - 90px);
    width: 100%;
    overflow: hidden;
}

/* Left Visual Column */
.ess-left-col {
    flex: 1 1 50%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 60px;
    box-sizing: border-box;
    min-height: 350px;
}

/* Visual Overlay for contrast */
.ess-left-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.ess-left-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.ess-left-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    margin: 0;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.ess-left-subtitle {
    font-size: 1.6rem;
    font-weight: 400;
    color: #111827;
    margin: 15px 0 0 0;
    line-height: 1.3;
}

/* Right Content Column */
.ess-right-col {
    flex: 1 1 50%;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 10%;
    box-sizing: border-box;
    position: relative;
}

.ess-right-content {
    max-width: 540px;
    width: 100%;
}

.ess-right-tag {
    /* font-size: 0.75rem; */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #a1a1aa;
    margin-bottom: 1.5rem;
    display: block;
}

.ess-right-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 44px;
    color: #008b46;
    line-height: 1.25;
    margin: 0 0 2.5rem 0;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.ess-contact-btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #008b46;
    border: 1px solid #008b46;
    background-color: transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}

.ess-contact-btn:hover {
    background-color: #008b46;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 139, 70, 0.35);
    transform: translateY(-2px);
}

.ess-contact-btn:active {
    transform: translateY(0);
}

/* ============================================================
   CIE — FEATURE BADGES + INTRO SECTION
   ============================================================ */

.cie-intro-section {
    padding: 56px 0;
    background-color: #ffffff;
}

/* ---- Badges Row ---- */
.cie-badges-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 30px 0 0;
}

.cie-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 24px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.01em;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cie-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

/* 4 Default Repeating Colors */
.cie-badge--blue {
    background: linear-gradient(180deg, #64c5ee 0%, #4fb2df 100%);
}

.cie-badge--yellow {
    background: linear-gradient(180deg, #ecc54d 0%, #e1b435 100%);
}

.cie-badge--pink {
    background: linear-gradient(180deg, #ee9d94 0%, #e2877c 100%);
}

.cie-badge--purple {
    background: linear-gradient(180deg, #4454f3 0%, #2f3fdc 100%);
}

/* ---- nth-child cycling for <li> inside .cie-badges-row ---- */
/* Renders <li> elements as pills matching the 4 badge colors, repeating every 4 */

.cie-badges-row li {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 24px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.01em;
    white-space: nowrap;
    list-style: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cie-badges-row li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

/* 1st, 5th, 9th … → Blue */
.cie-badges-row li:nth-child(4n+1) {
    background: linear-gradient(180deg, #64c5ee 0%, #4fb2df 100%);
}

/* 2nd, 6th, 10th … → Yellow */
.cie-badges-row li:nth-child(4n+2) {
    background: linear-gradient(180deg, #ecc54d 0%, #e1b435 100%);
}

/* 3rd, 7th, 11th … → Pink */
.cie-badges-row li:nth-child(4n+3) {
    background: linear-gradient(180deg, #ee9d94 0%, #e2877c 100%);
}

/* 4th, 8th, 12th … → Purple */
.cie-badges-row li:nth-child(4n+4) {
    background: linear-gradient(180deg, #4454f3 0%, #2f3fdc 100%);
}

/* Remove <ul> default padding/margin when inside .cie-badges-row */
.cie-badges-row ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* ---- Two-column Intro Row ---- */
.cie-intro-row {
    display: flex;
    align-items: center;
    gap: 56px;
}

/* Left: Text */
.cie-intro-text {
    flex: 1 1 0;
    min-width: 0;
}

.cie-intro-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin: 0 0 20px 0;
    letter-spacing: -0.3px;
}

.cie-intro-desc {
    font-size: 14.5px;
    line-height: 1.85;
    color: #5a6b7c;
    margin: 0;
}

.cie-highlight {
    color: #008b46;
    font-weight: 600;
}

/* Right: Image */
.cie-intro-image {
    flex: 0 0 46%;
    max-width: 46%;
}

.cie-image-wrapper {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cie-image-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.15);
}

.cie-product-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

/* ============================================================
   RESPONSIVE — ESS SPLIT HERO
   ============================================================ */

@media (max-width: 1199px) {
    .ess-left-title {
        font-size: 2.5rem;
    }

    .ess-left-subtitle {
        font-size: 1.4rem;
    }

    .ess-right-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 991px) {
    .ess-split-container {
        flex-direction: column;
        min-height: auto;
    }

    .ess-left-col {
        flex: 1 1 100%;
        height: 520px;
        padding: 60px 40px;
    }

    .ess-left-content {
        max-width: 100%;
    }

    .ess-right-col {
        flex: 1 1 100%;
        padding: 80px 40px;
        align-items: center;
        text-align: center;
    }

    .ess-right-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ess-right-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 575px) {
    .ess-left-col {
        height: 400px;
        padding: 40px 20px;
    }

    .ess-left-title {
        font-size: 2rem;
    }

    .ess-left-subtitle {
        font-size: 1.15rem;
        margin-top: 10px;
    }

    .ess-right-col {
        padding: 60px 20px;
    }

    .ess-right-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .ess-contact-btn {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}

/* ============================================================
   RESPONSIVE — CIE INTRO SECTION
   ============================================================ */

@media (max-width: 1100px) {
    .cie-intro-row {
        gap: 36px;
    }
}

@media (max-width: 900px) {
    .cie-intro-section {
        padding: 44px 0 56px;
    }

    .cie-intro-row {
        flex-direction: column;
        gap: 32px;
    }

    .cie-intro-image {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .cie-product-img {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 600px) {
    .cie-intro-section {
        padding: 36px 0 48px;
    }

    .cie-badges-row {
        gap: 8px;
    }

    .cie-badge {
        font-size: 0.76rem;
        padding: 6px 14px;
    }

    .cie-intro-title {
        font-size: clamp(20px, 5vw, 26px);
    }

    .cie-intro-desc {
        font-size: 14px;
    }
}

/* ============================================================
   EMS CLOUD STORAGE SECTION
   ============================================================ */

.ems-section {
    padding: 0 0 55px;
    background-color: #ffffff;
}

/* ---- Green header bar ---- */
.ems-header-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #008b46;
    padding: 8px 20px;
    margin-bottom: 24px;
    border-radius: 4px;
}

.ems-header-icon {
    display: flex;
    align-items: center;
    color: #ffffff;
    flex-shrink: 0;
}

.ems-header-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.01em;
}

/* ---- Body two-column row ---- */
.ems-body-row {
    display: flex;
    align-items: flex-start;
    gap: 56px;
}

/* ---- Left column ---- */
.ems-col-left {
    flex: 0 0 42%;
    max-width: 42%;
}

.ems-col-title {
    font-size: clamp(18px, 2.4vw, 24px);
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.35;
    margin: 0 0 24px 0;
}

.ems-laptop-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    margin-bottom: 28px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(135deg, #0d3d2b 0%, #1a6e47 50%, #0d5c35 100%);
}

.ems-laptop-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.ems-laptop-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* CTA Button */
.ems-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background-color: #008b46;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background-color 0.3s ease, transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ems-cta-btn:hover {
    background-color: #006e38;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 139, 70, 0.35);
    color: #ffffff;
}

.ems-cta-btn:active {
    transform: translateY(0);
}

/* ---- Right column: feature items ---- */
.ems-col-right {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ems-feature-item {
    padding: 0 0 28px 0;
    margin-bottom: 28px;
    border-bottom: 1px solid #eef2f6;
}

.ems-feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ems-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px 0;
    letter-spacing: 0.01em;
}

.ems-feature-desc {
    font-size: 16px;
    line-height: 1.85;
    color: #5a6b7c;
    margin: 0;
}

/* ============================================================
   RESPONSIVE — EMS SECTION
   ============================================================ */

@media (max-width: 1100px) {
    .ems-body-row {
        gap: 36px;
    }

    .ems-col-left {
        flex: 0 0 44%;
        max-width: 44%;
    }
}

@media (max-width: 900px) {
    .ems-body-row {
        flex-direction: column;
        gap: 32px;
    }

    .ems-col-left {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

}

@media (max-width: 600px) {
    .ems-section {
        padding: 0 0 52px;
    }

    .ems-header-bar {
        padding: 8px 16px;
        margin-bottom: 24px;
    }

    .ems-header-title {
        font-size: 18px;
    }

    .ems-col-title {
        font-size: clamp(16px, 4.5vw, 20px);
    }

    .ems-feature-desc {
        font-size: 15px;
    }

    .ems-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   APPLICATION SCENARIO — ACCORDION SECTION
   ============================================================ */

.app-scenario-section {
    padding: 0 0 50px;
    background-color: #ffffff;
}

/* ---- Accordion list ---- */
.acc-list {
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

/* ---- Each accordion item ---- */
.acc-item {
    border-bottom: 1px solid #e2e8f0;
}

.acc-item:last-child {
    border-bottom: none;
}

/* ---- Trigger button ---- */
.acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.acc-trigger:hover {
    background-color: #f8fafc;
}

/* Icon circle */
.acc-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #008b46;
    color: #ffffff;
    transition: background-color 0.25s ease, transform 0.3s ease;
}

.acc-icon--plus {
    background-color: transparent;
    border: 1.5px solid #008b46;
    color: #008b46;
}

/* Trigger label */
.acc-trigger-text {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    flex: 1;
}

/* Open state: trigger background tint */
.acc-item--open>.acc-trigger {
    background-color: #f0faf5;
}

/* ---- Body ---- */
.acc-body {
    padding: 20px 20px 20px 58px;
    /* left-align with text (26px icon + 12px gap + 20px padding) */
    display: block;
}

.acc-body[hidden] {
    display: none;
}

.acc-body p {
    font-size: 14px;
    line-height: 1.85;
    color: #5a6b7c;
    margin: 0;
}

/* ============================================================
   RESPONSIVE — ACCORDION SECTION
   ============================================================ */

@media (max-width: 600px) {
    .app-scenario-section {
        padding: 0 0 52px;
    }

    .acc-trigger {
        padding: 14px 16px;
        gap: 10px;
    }

    .acc-body {
        padding: 0 16px 16px 52px;
    }
}

/* ============================================================
   OPERATING MODE SECTION
   ============================================================ */

.opmode-section {
    padding: 0 0 50px;
    background-color: #ffffff;
}

/* Two-column body */
.opmode-body-row {
    display: flex;
    align-items: flex-start;
    gap: 52px;
}

/* ---- Left: chart column ---- */
.opmode-chart-col {
    flex: 0 0 55%;
    max-width: 55%;
    min-width: 0;
}

.opmode-chart-wrap {
    position: relative;
    padding-left: 14px;
    /* room for Y-label */
}

.opmode-chart-ylabel {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 11px;
    color: #6b7a8d;
    white-space: nowrap;
    transform-origin: center center;
}

.opmode-svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

/* ---- Right: description column ---- */
.opmode-desc-col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 8px;
}

.opmode-time-block {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid #eef2f6;
}

.opmode-time-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.opmode-time-label {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px 0;
    letter-spacing: 0.01em;
}

.opmode-time-desc {
    font-size: 16px;
    line-height: 1.85;
    color: #5a6b7c;
    margin: 0;
}

/* ============================================================
   RESPONSIVE — OPERATING MODE SECTION
   ============================================================ */

@media (max-width: 1100px) {
    .opmode-body-row {
        gap: 36px;
    }

    .opmode-chart-col {
        flex: 0 0 52%;
        max-width: 52%;
    }
}

@media (max-width: 900px) {
    .opmode-body-row {
        flex-direction: column;
        gap: 28px;
    }

    .opmode-chart-col {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .opmode-section {
        padding: 0 0 52px;
    }

    .opmode-time-desc {
        font-size: 15px;
    }
}

/* ============================================================
   CASES SECTION
   ============================================================ */

.cases-section {
    background-color: #ffffff;
}

/* ---- Section Header ---- */
.cases-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.cases-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 25px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
    text-transform: uppercase;
}

/* Green vertical accent bar (|) */
.cases-title-accent {
    display: inline-block;
    width: 4px;
    height: 22px;
    background-color: #008b46;
    border-radius: 2px;
    flex-shrink: 0;
}

/* "Đọc thêm ›" button */
.cases-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 9px 20px;
    background-color: #008b46;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    transition: background-color 0.25s ease, transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cases-read-more-btn:hover {
    background-color: #006e38;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 139, 70, 0.3);
    color: #ffffff;
}

/* ---- Card Grid ---- */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---- Individual Card ---- */
.cases-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cases-card-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cases-card-img-wrap:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.cases-card-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cases-card-img-wrap:hover .cases-card-img {
    transform: scale(1.05);
}

.cases-card-caption {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.5;
}

.grid-img {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 15px 0;
}

/* ============================================================
   RESPONSIVE — CASES SECTION
   ============================================================ */

@media (max-width: 900px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {

    .cases-header {
        flex-wrap: wrap;
        gap: 12px;
    }

    .cases-title {
        font-size: 1rem;
    }

    .cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cases-read-more-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .grid-img {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ============================================================
   OPERATING MODE SECTION — Dynamic Table Styling
   ============================================================ */

.opmode-body-row table,
#tablepress-7 {
    display: block;
    width: 100% !important;
    border-collapse: collapse !important;
    font-size: 14.5px;
    margin-top: 20px;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px;
    overflow-x: auto;
    background-color: #ffffff;
    -webkit-overflow-scrolling: touch;
    flex: 1 1 100%;
    max-width: 100%;
}

.opmode-body-row table tbody {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.opmode-body-row table tr {
    display: table-row;
    transition: background-color 0.2s ease;
}

.opmode-body-row table tr:hover {
    background-color: #f9fafb;
}

.opmode-body-row table th,
#tablepress-7 th {
    background-color: #f8fafc;
    color: #008b46;
    font-weight: 700;
    padding: 14px 20px;
    font-size: 15px;
    border-bottom: 2px solid #e2e8f0 !important;
    border-right: 1px solid #e2e8f0 !important;
    border-top: none !important;
    border-left: none !important;
    text-align: left;
}

.opmode-body-row table th:last-child,
#tablepress-7 th:last-child {
    border-right: none !important;
}

.opmode-body-row table td,
#tablepress-7 td {
    padding: 14px 20px;
    border-bottom: 1px solid #e2e8f0 !important;
    border-right: 1px solid #e2e8f0 !important;
    border-top: none !important;
    border-left: none !important;
    color: #334155;
    font-weight: 500;
    text-align: left;
    font-size: 14px;
}

/* Category headers inside table */
.opmode-body-row table td[colspan="4"],
#tablepress-7 td[colspan="4"] {
    background-color: #f8fafc;
    color: #008b46;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 20px;
    border-bottom: 2px solid #e2e8f0 !important;
    border-right: none !important;
}

.opmode-body-row table td:last-child,
#tablepress-7 td:last-child {
    border-right: none !important;
}

.opmode-body-row table tr:last-child td,
#tablepress-7 tr:last-child td {
    border-bottom: none !important;
}

@media (max-width: 768px) {

    .opmode-body-row table th,
    .opmode-body-row table td {
        padding: 10px 14px;
        font-size: 13px;
    }
}
