.elementor-5778 .elementor-element.elementor-element-b097294{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-c897ea9 */body {
    font-family: "montserat", Arial, sans-serif;
    background: #fafbfc;
    color: #232323;
    line-height: 1.5;
}

/* Container */
.calculator-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 14px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(36,37,38,0.05);
    border-radius: 16px;
}

/* Main Section Titles */
.header {
    text-align: left;
    color: #232323;
    background: none;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.7px;
    border-left: 6px solid #ededed;
    padding: 0 0 10px 10px;
    margin-bottom: 8px;
}

.sub-header {
    text-align: left;
    color: #444;
    font-size: 1.15rem;
    font-weight: 600;
    border-left: 4px solid #ededed;
    padding: 0 0 6px 10px;
    margin-bottom: 12px;
}

/* Section/Bar Labels (e.g. TOTAL EMPLOYEES) */
.section-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f8f8;
    color: #212224;
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: 0.1px;
    padding: 8px 0;
    margin: 20px 0 10px 0;
    border-radius: 8px;
    border: 1.5px solid #f3f3f4;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 8px;
    font-size: 1.02rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1.5px 8px rgba(40,41,42,0.02);
}
th {
    background: #f5f5f7;
    color: #232323;
    font-size: 1rem;
    font-weight: 700;
    padding: 10px 3px;
    border-bottom: 2px solid #efefef;
}
td {
    padding: 9px 3px;
    text-align: center;
    border-bottom: 1.2px solid #f2f2f2;
    background: #fff;
}

/* Inputs */
input,
select {
    width: 100%;
    font-size: 1rem;
    padding: 7px 4px;
    border: 1.5px solid #ececec;
    border-radius: 2px;
    background: #f8f9fa;
    transition: border-color 0.18s;
}
input:focus,
select:focus {
    border-color: #f47c20;
    outline: none;
}

.select-price {
    font-weight: 500;
}

/* Output Styles */
.total-profit {
    text-align: center;
    margin: 16px 0;
    padding: 6px 0 0 0;
    background: none;
}
.total-profit span {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: #232323;
    margin-bottom: 3px;
    letter-spacing: 0.15px;
}
/* This is the main output, orange and bold */
.total-profit input {
    font-size: 2rem;
    font-weight: bold;
    background: #fff7ee;
    color: #f47c20;
    border: none;
    border-radius: 10px;
    width: 210px;
    margin: auto;
    text-align: center;
    letter-spacing: 1.2px;
    box-shadow: 0 1.5px 5px rgba(244, 124, 32, 0.04);
}

/* Any specific output cells */
td.output,
td.result,
td.bold-output {
    font-size: 1.09rem;
    font-weight: 700;
    color: #f47c20;
    background: #fff6ee;
    border-radius: 6px;
}

/* Table total rows (keep neutral, but bold) */
tr.total-row td,
tr.total-row th {
    background: #f5f5f5;
    c/* End custom CSS */