/* =============================================
   SIZE.PHP - MINIMAL WHITE PROFESSIONAL LAYOUT
   Clean, Responsive Form Design
   ============================================= */

/* Override body padding from header */
body {
    background: #fff !important;
}

/* Main Form Container */
body .form1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
}

/* =============================================
   SIZE CALCULATOR CARD
   Card container for dimensions row
   ============================================= */
body .size-calculator-card {
    max-width: 100%;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease;
}

body .size-calculator-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* =============================================
   FORM MAIN ROW - Calculator + Order Info side by side
   ============================================= */
body .form-main-row {
    display: grid;
    grid-template-columns: 70fr 30fr;
    gap: 24px;
    align-items: start;
}

body .form-main-col {
    min-width: 0;
}

body .form-main-col .roll-errors {
    margin-top: 0;
}

body .form-main-col .roll-errors .error-message {
    margin: 8px 0;
}

/* Compact orderinfo inside the right column */
body .form-main-col .orderinfo {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

body .form-main-col .orderinfo .form-group {
    gap: 4px;
}

body .form-main-col .orderinfo .form-group label {
    font-size: 10px;
    letter-spacing: 0.3px;
    margin: 0;
}

body .form-main-col .orderinfo .form-group input[type="text"],
body .form-main-col .orderinfo .form-group select {
    padding: 8px 10px;
    font-size: 13px;
    border-radius: 6px;
}

body .form-main-col .orderinfo .form-group select {
    padding: 8px 10px;
    font-size: 13px;
}

/* Responsive: adjust orderinfo grid on smaller screens */
@media (max-width: 600px) {
    body .form-main-col .orderinfo {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

@media (max-width: 400px) {
    body .form-main-col .orderinfo {
        grid-template-columns: 1fr;
    }
}

/* Dimensions Row - 7 column grid inside the card */
body .dimensions-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
    align-items: start;
}

body .dimensions-row .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

body .dimensions-row .form-group label {
    font-size: 11px;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body .dimensions-row .form-group input[type="number"] {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    outline: none;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    box-shadow: none;
    margin: 0;
    font-family: inherit;
    box-sizing: border-box;
}

body .dimensions-row .form-group input[type="number"]:focus {
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

body .dimensions-row .form-group .total-box {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    background: #f7f7f7;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-align: center;
    min-height: 18px;
    box-sizing: border-box;
}

body .dimensions-row .form-group .error-message {
    font-size: 10px;
    color: #d00;
    font-weight: 500;
    margin-top: 2px;
    line-height: 1.3;
}

/* Responsive: Tablet */
@media (max-width: 900px) {
    body .dimensions-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
    body .size-calculator-card {
        padding: 22px 18px;
    }
}

@media (max-width: 600px) {
    body .dimensions-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    body .size-calculator-card {
        padding: 18px 14px;
        border-radius: 10px;
    }
    body .size-calculator-card .card-header span {
        font-size: 13px;
    }
    body .dimensions-row .form-group label {
        font-size: 10px;
    }
}

@media (max-width: 400px) {
    body .dimensions-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    body .dimensions-row .form-group input[type="number"],
    body .dimensions-row .form-group .total-box {
        padding: 8px 10px;
        font-size: 13px;
    }
}

/* Form Header */
body .form1 .form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 24px 0;
    padding: 0 0 16px 0;
    border-bottom: 1px solid #e0e0e0;
}

body .form1 .form-header .h3 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 0;
    padding: 0;
    border: none;
    text-transform: none;
    letter-spacing: 0;
}

body .available-rolls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f4f8;
    border: 1px solid #dce3ec;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
}

body .available-rolls .rolls-label {
    font-weight: 600;
    color: #555;
    white-space: nowrap;
}

body .available-rolls .rolls-values {
    font-weight: 700;
    color: #0066cc;
    white-space: nowrap;
}

@media (max-width: 600px) {
    body .form1 .form-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 18px;
        padding-bottom: 14px;
    }
    body .form1 .form-header .h3 {
        font-size: 18px;
    }
    body .available-rolls {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Order Info Grid */
body .orderinfo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Form Group */
body .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body .form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Input Fields */
body .form-group input[type="number"],
body .form-group input[type="text"],
body .form-group select,
body .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e0e0e0;
    background: #fff;
    font-size: 14px;
    color: #000;
    outline: none;
    transition: border-color 0.2s;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    font-family: inherit;
}

body .form-group input:focus,
body .form-group select:focus,
body .form-group textarea:focus {
    border-color: #000;
}

body .form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Total/Display Boxes */
body .total-box {
    padding: 12px 14px;
    border: 1px solid #e0e0e0;
    background: #fafafa;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-align: center;
}

/* Error Messages */
body .error-message {
    display: none;
    font-size: 12px;
    color: #d00;
    font-weight: 500;
    margin-top: 4px;
}

body #roll_error,
body #min_roll_error {
    background: #fff3f3;
    border: 1px solid #ffcccc;
    padding: 12px;
    margin: 20px 0 0;
    font-size: 13px;
    color: #c00;
}

/* Price Section */
body .price1 {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 16px 14px;
    margin: 0;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

/* Price Summary Row - 3 columns: Unit Price, Total Sq Ft, Final Price */
body .price-summary-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

body .price-summary-row .form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 0;
}

body .price-summary-row label {
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body .price-summary-row .total-box {
    width: 100%;
    padding: 8px 10px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    background: #f7f7f7;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    text-align: center;
    box-sizing: border-box;
}

body .price-summary-row .total-box.final-price-box {
    background: #f0f9f0;
    border-color: #4caf50;
    color: #2e7d32;
    font-size: 14px;
}

body .price1 .form-group {
    margin-bottom: 8px;
}

body .price1 .form-group:last-child {
    margin-bottom: 0;
}

body .price1 label {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

/* GST Breakdown */
body .gst-breakdown {
    display: flex;
    gap: 16px;
    padding: 6px 0;
    margin-bottom: 8px;
    font-size: 11px;
    color: #888;
    font-weight: 500;
}

body #discount-section {
    margin: 0;
}

body .price-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

body .price-inline .total-box {
    width: 100%;
    padding: 8px 10px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    background: #f7f7f7;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    text-align: center;
    box-sizing: border-box;
    box-shadow: none;
}

body .price-inline label {
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px !important;
}

/* Price + Remarks Row */
body .price-remarks-row {
    display: grid;
    grid-template-columns: 70fr 30fr;
    gap: 16px;
    align-items: start;
    margin: 16px 0;
}

body .price-remarks-col {
    min-width: 0;
}

body .price-remarks-col .price1 {
    margin: 0;
}

body .price-remarks-side .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

body .price-remarks-side label {
    font-size: 12px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

body .price-remarks-side textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    color: #000;
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
    font-family: inherit;
    box-sizing: border-box;
}

body .price-remarks-side textarea:focus {
    border-color: #000;
}

/* Remarks */
body #remarks {
    margin: 0;
}

/* Buttons */
body .btn,
body button[type="submit"],
body button[type="button"] {
    /* width: 100%; */
    padding: 14px 20px;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

body .btn:hover,
body button[type="submit"]:hover,
body button[type="button"]:hover {
    background: #fff;
    color: #000;
}

body .btn:disabled,
body .btn-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Button Container */
body .form1 > div[style*="display: flex"] {
    display: flex !important;
    gap: 20px !important;
    margin-top: 30px;
}

body .form1 > div[style*="display: flex"] button {
    flex: 1;
    max-width: none;
    width: auto !important;
    margin: 0 !important;
}

/* Tab Section */
body .tab-section {
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 0 40px 40px;
}

body .tab-header {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

body .tab-link {
    padding: 12px 24px;
    border: none;
    background: none;
    color: #666;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    box-shadow: none;
    border-radius: 0;
}

body .tab-link:hover {
    color: #000;
}

body .tab-link.active {
    color: #000;
    border-bottom-color: #000;
}

body .tab-panel {
    display: none;
}

body .tab-panel.active {
    display: block;
}

body .tab-content-block {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
}

body .tab-content-block h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CDR File Section */
body .cdr-file-section {
    margin-top: 30px;
}

body .cdr-file-section iframe,
body .cdr-file-section img {
    display: block;
    width: 100%;
    max-width: 700px;
    height: auto;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    box-shadow: none;
    border-radius: 0;
}

body .cdr-file-section iframe {
    height: 500px;
}

body .cdr-file-section p {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
}

body .download-btn-wrapper {
    margin-top: 10px;
}

body .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    box-shadow: none;
    border-radius: 0;
}

body .download-btn:hover {
    background: #fff;
    color: #000;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet */
@media (max-width: 900px) {
    body .form1 {
        padding: 30px;
    }

    body .orderinfo {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    body .form-main-row {
        grid-template-columns: 70fr 30fr;
        gap: 20px;
    }

    body .price-remarks-row {
        grid-template-columns: 70fr 30fr;
        gap: 14px;
    }

    body .price1 {
        padding: 24px;
    }

    body .price-summary-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    body .price-inline {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    body .tab-section {
        padding: 0 30px 30px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    body .form1 {
        padding: 20px;
        border-left: none;
        border-right: none;
    }

    body .orderinfo {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    body .form-main-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    body .price-remarks-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    body .price-remarks-side textarea {
        min-height: 80px;
    }

    body .price1 {
        padding: 20px;
    }

    body .price-summary-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    body .price-summary-row .total-box.final-price-box {
        font-size: 16px;
    }

    body .gst-breakdown {
        flex-direction: column;
        gap: 4px;
    }

    body .form1 > div[style*="display: flex"] {
        flex-direction: column;
    }

    body .form1 > div[style*="display: flex"] button {
        width: 100% !important;
    }

    body .tab-section {
        padding: 0 20px 20px;
        margin-top: 30px;
    }

    body .tab-header {
        gap: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    body .tab-link {
        padding: 10px 16px;
        font-size: 11px;
        white-space: nowrap;
    }

    body .cdr-file-section iframe {
        height: 300px;
    }
}

/* ============================================
   ADDED PRODUCT SECTIONS (Dynamic)
   ============================================ */
body #added-products-container {
    margin: 16px 0;
}

body .added-product-section {
    background: #fafbfc;
    border: 1px solid #e0e4e8;
    border-radius: 12px;
    padding: 20px 20px 12px;
    margin-bottom: 20px;
    position: relative;
}

body .added-product-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 20px 0;
    padding: 0 0 16px 0;
    border-bottom: 1px solid #e0e0e0;
}

body .added-product-title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 0;
    padding: 0;
    border: none;
    text-transform: none;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

body .added-product-title i {
    font-size: 20px;
    color: #0066cc;
}

body .added-product-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

body .added-product-remove {
    all: unset;
    box-sizing: border-box;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #bbb;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    flex-shrink: 0;
    padding: 0 !important;
    line-height: 1;
    background: #f4f4f4 !important;
    border: 1px solid #e0e0e0 !important;
    font-size: 0;
    margin: 0 !important;
    min-width: unset !important;
    max-width: unset !important;
}

body .added-product-remove i {
    font-size: 11px;
    color: #999;
    pointer-events: none;
}

body .added-product-remove:hover {
    background: #ffe8e8 !important;
    border-color: #f5c6c6 !important;
}

body .added-product-remove:hover i {
    color: #d00;
}

body .added-product-section .form-main-row {
    margin-bottom: 16px;
}

body .added-product-section .price-remarks-row {
    margin: 0;
}

body .added-product-section .size-calculator-card {
    margin-bottom: 0;
    box-shadow: none;
    border-color: #e0e4e8;
}

body .added-product-section .price1 {
    box-shadow: none;
    border-color: #e0e4e8;
}

@media (max-width: 600px) {
    body .added-product-section {
        padding: 14px 12px 10px;
    }
    body .added-product-bar {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
    body .added-product-title {
        font-size: 13px;
    }
}

/* ============================================
   ADD BUTTON & MODAL STYLES
   ============================================ */

/* Button Row */
body .form-actions-row {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

body .form-actions-row .btn {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 0;
}

body .form-actions-row .btn:hover {
    background: #fff;
    color: #000;
}

body .btn-add {
    background: #0066cc !important;
    border-color: #0066cc !important;
    color: #fff !important;
}

body .btn-add:hover {
    background: #fff !important;
    color: #0066cc !important;
}

/* Modal Overlay */
body .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Modal Container */
body .modal-container {
    background: #fff;
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: modalFadeIn 0.25s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal Header */
body .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #f0f0f0;
}

body .modal-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
}

body .modal-title i {
    color: #0066cc;
}

body .modal-close {
    all: unset;
    box-sizing: border-box;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f4f4f4 !important;
    border: 1px solid #e0e0e0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
    flex-shrink: 0;
    font-size: 0;
    padding: 0 !important;
    margin: 0 !important;
}

body .modal-close::after {
    content: "\00D7";
    font-size: 16px;
    color: #999;
    line-height: 1;
    transition: color 0.15s;
}

body .modal-close:hover {
    background: #ffe8e8 !important;
    border-color: #f5c6c6 !important;
}

body .modal-close:hover::after {
    color: #d00;
}

/* Modal Body */
body .modal-body {
    padding: 24px;
}

body .modal-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

body .modal-form-group:last-child {
    margin-bottom: 0;
}

body .modal-form-group label {
    font-size: 12px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

body .modal-form-group input[type="text"],
body .modal-form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    color: #000;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
    box-sizing: border-box;
}

body .modal-form-group input[type="text"]:focus,
body .modal-form-group select:focus {
    border-color: #0066cc;
}

/* Modal Footer */
body .modal-footer {
    display: flex;
    gap: 12px;
    padding: 16px 24px 20px;
    border-top: 1px solid #f0f0f0;
}

body .modal-footer .btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    border: 1.5px solid;
}

body .modal-footer .btn-cancel {
    background: #fff;
    border-color: #e0e0e0;
    color: #666;
}

body .modal-footer .btn-cancel:hover {
    border-color: #000;
    color: #000;
}

body .modal-footer .btn-save {
    background: #0066cc;
    border-color: #0066cc;
    color: #fff;
}

body .modal-footer .btn-save:hover {
    background: #0052a3;
    border-color: #0052a3;
}

/* Responsive Modal */
@media (max-width: 600px) {
    body .form-actions-row {
        flex-direction: column;
        gap: 12px;
    }
    body .modal-container {
        max-width: 100%;
        margin: 0 10px;
        border-radius: 10px;
    }
    body .modal-body {
        padding: 18px;
    }
    body .modal-header {
        padding: 16px 18px 14px;
    }
    body .modal-footer {
        padding: 14px 18px 18px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    body .form1 {
        padding: 16px;
    }

    body .form1 .form-header .h3 {
        font-size: 16px;
    }

    body .form-group input[type="number"],
    body .form-group input[type="text"],
    body .form-group select,
    body .total-box {
        padding: 10px 12px;
        font-size: 13px;
    }

    body .form-main-row {
        gap: 12px;
    }

    body .price-remarks-row {
        gap: 12px;
    }

    body .price1 {
        padding: 16px;
    }

    body .price-summary-row .total-box {
        padding: 12px 12px;
        font-size: 14px;
    }

    body .price-summary-row .total-box.final-price-box {
        font-size: 15px;
    }

    body .price-inline .total-box {
        padding: 12px 12px;
        font-size: 14px;
    }

    body .tab-link {
        padding: 8px 12px;
        font-size: 10px;
    }
}
