    .cal-cal-container {
        font-family: var(--global-body-font-family);
        background-color: #f4f4f4;
        margin: 0;
        padding: 0;
    }

    .cal-cal-container {
        max-width: 800px; /* Increased cal-cal-container width for two calculators side by side */
        margin: 0 auto;
        background-color: #fff;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    h1 {
        text-align: center;
        color: #333;
    }

    .cal2-calculator {
        display: flex;
        justify-content: space-between; /* Distribute elements evenly */
        margin-bottom: 15px;
        padding: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        flex-wrap: wrap; /* Enable responsiveness */
    }

    .input-group {
        flex: 1; /* Distribute available space evenly */
        margin-right: 15px;
        min-width: 150px; /* Minimum width for small screens */
    }

    label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
    }

    input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    button {
        width: 100%;
        color: #fff;
        border: none;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 15px; /* Added margin for better spacing */
    }


    
    .result {
    display: none; /* Initially hide the result box */
    margin-top: 15px;
    text-align: left;
    background: #fff0f5;
    padding: 15px;
    border-radius: 5px;
    box-shadow: inset 0 0 8px rgba(218, 112, 214, 0.3);
}


    .resultText {
        font-weight: 700;
        color: #da70d6;
        font-size: 1.1em;
    }
    
    p#resultText {
   		 font-weight: 700;
         color: #da70d6;
         font-size: 1.1em;
    }
    
    .left-breast-result {
    color: #DA7070;
}

.right-breast-result {
    color: #70D6DA;
}

.total-breast-result {
    color: #da70d6;
}

    /* Responsive Design */
    @media (max-width: 600px) {
        .cal2-calculator {
            flex-direction: column; /* Stack the inputs vertically on small screens */
        }

        .input-group {
            margin-right: 0;
            margin-bottom: 15px; /* Added margin for better spacing */
        }
    }


