﻿/* Remove Arrows 
 * - Chrome, Safari, Edge, Opera
 * - Firefox
*/
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.gauge-container {
    width: 400px;
    min-width: 350px;
    min-height: 220px;
    /* Optionally, set a fixed height if needed */
    /* height: 250px; */
    /* background: #f8f9fa; */
    box-sizing: border-box;
}

.col-md-6 {
    min-width: 400px;
    min-height: 250px;
}


input[type=number] {
    -moz-appearance: textfield;
}

.certification-box {
    max-width: 90%; /* Makes it nearly full width of the left column */
    background-color: #f8f9fa; /* Light gray background */
    border-left: 4px solid #007bff; /* Blue branding highlight */
    font-size: 14px; /* Keeps text readable */
}

/* Disclaimer Styling */
.disclaimer-box {
    max-width: 97%;
    background-color: #f8f9fa;
    border-bottom: 4px solid #007bff; /* Red accent to indicate caution */
    font-size: 14px;
    line-height: 1.5;
}
/* Grey Styling */
.GreyPlain-box {
    max-width: 90%;
    background-color: #f8f9fa;
   // border-bottom: 4px solid #007bff; /* Red accent to indicate caution */
    font-size: 14px;
    line-height: 1.5;
}

/* Calculator Submit Button */
#submit-calculator {
    width: 30%;
}

#submit-calculator-spinner {
    display: none;
}

/* Gauge Range Colors 
#revenue-multiple-circular-gauge .gauge-range-low {
    background-color: #f5564a !important;
}

#revenue-multiple-circular-gauge .gauge-range-medium {
    background-color: #ffc720 !important;
}

#revenue-multiple-circular-gauge .gauge-range-high {
    background-color: #97c95c !important;
}

#profit-multiple-circular-gauge .gauge-range-low {
    background-color: #f5564a !important;
}

#profit-multiple-circular-gauge .gauge-range-medium {
    background-color: #ffc720 !important;
}

#profit-multiple-circular-gauge .gauge-range-high {
    background-color: #97c95c !important;
}*/
    