.elementor-kit-127{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-127 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Client Orders Dashboard - Full CSS */
.client-orders-dashboard {
    max-width: 1200px;
    margin: 20px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.client-orders-dashboard h2 {
    margin-top: 0;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

/* Orders Table */
.orders-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.orders-table th {
    text-align: left;
    padding: 14px 16px;
    background: #f3f3f3;
    font-weight: 600;
    color: #444;
    border-bottom: 1px solid #ddd;
}

.orders-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
}

/* Accordion Header (Clickable Row) */
.accordion-header {
    cursor: pointer;
    transition: background 0.2s ease;
}

.accordion-header:hover {
    background: #f9f9f9;
}

/* Accordion Body (Hidden Details) */
.accordion-body {
    display: none !important;
}

/* Force display: table-row when set by JS */
.accordion-body[style*="table-row"] {
    display: table-row !important;
}

.accordion-content {
    padding: 20px;
    line-height: 1.6;
}

/* Products Subtable */
.products-subtable {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 20px 0;
    font-size: 14px;
}

.products-subtable th,
.products-subtable td {
    padding: 8px;
    text-align: left;
}

.products-subtable th {
    background: #f3f3f3;
    font-weight: 600;
    color: #444;
}

.products-subtable tr {
    border-bottom: 1px solid #eee;
}

/* Details Grid (Order Info, Delivery, Timeline) */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.details-grid .col {
    padding: 0;
}

.details-grid h4 {
    margin-top: 0;
    color: #333;
    font-size: 16px;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.details-grid p {
    margin: 8px 0;
    line-height: 1.5;
}

.details-grid strong {
    color: #444;
    min-width: 120px;
    display: inline-block;
}

.details-grid a {
    color: #007cba;
    text-decoration: underline;
}

.details-grid a:hover {
    color: #005a9e;
}

/* Responsive */
@media (max-width: 900px) {
    .details-grid {
        grid-template-columns: 1fr;
    }

    .orders-table th,
    .orders-table td {
        padding: 10px 8px;
        font-size: 14px;
    }

    .client-orders-dashboard {
        padding: 15px;
    }
}

@media (max-width: 600px) {
    .orders-table {
        font-size: 14px;
    }

    .products-subtable th,
    .products-subtable td {
        padding: 6px 4px;
        font-size: 13px;
    }
}/* End custom CSS */