.pt-calc-container-b51835dd {
    display: flex;
    gap: 3%;
    backdrop-filter: blur(7px);
    box-shadow: rgba(50, 50, 93, 0.05) 0px 50px 100px -20px, rgba(0, 0, 0, 0.2) 0px 30px 60px -30px !important;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.6);
    box-sizing: border-box;
    /* Default Width */
    width: 100%;
    max-width: 100%;
}

@media (max-width: 767px) {
    .pt-calc-container-b51835dd {
        flex-direction: column;
        padding: 1.5rem 1rem;
        gap: 2rem;
    }
}

.pt-calc-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pt-calc-container-b51835dd h2 {
    font-size: clamp(1.4rem, 2vw + 1rem, 1.7rem);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.pt-calc-container-b51835dd h3 {
    font-size: clamp(1.1rem, 1.5vw + 0.8rem, 1.25rem);
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pt-input-group {
    margin-bottom: 1.2rem;
}

.pt-calc-column label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.pt-calc-column input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: transparent !important;
    border: 2px dotted #037e44 !important;
    font-weight: 600 !important;
    font-size: 1rem;
    color: #333;
    outline: none;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-sizing: border-box;
}

.pt-calc-column input:hover {
    background: rgba(200, 237, 207, 0.3) !important;
}

.pt-calc-column input:focus,
.pt-calc-column input:focus-visible {
    background: #c8edcf !important;
    border-style: solid !important;
    box-shadow: 0 0 0 3px rgba(3, 126, 68, 0.2);
}

/* Fix for number inputs on mobile */
.pt-calc-column input[type=number]::-webkit-inner-spin-button, 
.pt-calc-column input[type=number]::-webkit-outer-spin-button { 
    opacity: 1;
    height: auto;
}

.pt-summary {
    margin-top: auto; /* Pushes summary to the bottom of the flex column */
    background: rgba(255,255,255,0.4);
    border-radius: 0.75rem;
    padding: 1.2rem;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.pt-summary p {
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    line-height: 1.4;
}

.pt-summary p span:first-child {
    padding-right: 1rem;
}

.pt-summary p span.pt-val {
    font-weight: 700;
    color: #006e3b;
    white-space: nowrap;
}

.pt-summary p.pt-total-row {
    font-weight: 800;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px dashed rgba(0, 110, 59, 0.2);
    font-size: 1.15rem;
    color: #222;
}

.pt-summary p.pt-total-row span.pt-val {
    font-weight: 900 !important;
    font-size: 1.25rem;
}