#cost-calculator {
    width: 960px;
    margin: 20px auto;
}

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

h3 {
    text-align: center;
    margin-top: 20px;
}

.slider-range {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #333;
    margin-top: 5px;
}

.slider-min-value,
.slider-max-value {
    font-size: 14px;
    color: #333;
    min-width: 30px;
    text-align: center;
}

#tuition-slider,
#tuition-risk-slider,
#refund-slider,
#cir-slider {
    width: 100%; /* Ensure sliders stretch to the container */
    margin: 10px 0;
}

.ui-slider-handle {
    position: relative;
    width: 20px;
    height: 20px;
    background: #0073aa;
    border-radius: 50%;
    cursor: pointer;
}

.slider-tooltip {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0084be;
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
    display: none; /* Initially hidden */
    pointer-events: none;
}

/* Style for the slider track (unfilled portion) */
.ui-slider {
    height: 8px; /* Adjust height as needed */
    background-color: #bfc5cb; /* Unfilled (grey) color */
    border-radius: 4px; /* Smooth edges for the track */
    position: relative;
}

/* Style for the filled portion of the slider */
.ui-slider .ui-slider-range {
    background: #0084be !important; /* Filled (blue) color */
    border-radius: 4px; /* Smooth edges for the filled part */
}

/* Keep the handle styling distinct */
.ui-slider .ui-slider-handle {
    width: 20px;
    height: 20px;
    background: #f2f2f2; /* Adjust handle color if needed */
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: -8px; /* Center the handle vertically */
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.cost-calculator .form-group{
    margin-bottom: 0;
}
.current-calculation,.expected-calculation {
    border: 1px solid #eaebed;
    border-radius: 4px;
    position: relative;
	height: 430px;
}
.cost-calculator .form-group{
    padding: 15px 30px;
}

.cost-calculator .form-group .field-desc{
    margin-bottom: 10px;
}

.cost-calculator {
    display: flex;
    flex-direction: row;
    gap: 30px;
}
.cost-calculator .expected-calculation{
    flex: auto;
}

.form-group .range-label{
    display: flex;
    justify-content: space-between;
	align-items: center;
    margin-bottom: 0;
}
.range-label span {
    border: 1px solid #808080;
    border-radius: 4px;
    padding: 1px 15px;
    font-weight: 600;
    font-size: 14px;
}
.summary {
    text-align: center;
    background: #F5F5FA;
    padding: 10px 30px 15px 30px;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h3.form-title {
    border-bottom: 1px solid #eaebed;
    padding-bottom: 10px;
    font-size: 20px;
}
.summary h4, .summary h6 {
    margin-bottom: 0;
}
.summary h4 {
    font-size: 18px;
}
@media (max-width: 920px) {
	#cost-calculator {
		width: auto;
		flex-direction: column;
		max-width: 480px;
		margin: auto;
	}
}
@media (max-width: 480px) {
	.cost-calculator .form-group {
		padding: 15px 10px;
	}
	.range-label label {
    font-size: 15px;
}
.cost-calculator .form-group .field-desc {
    font-size: 14px;
}	
	.expected-calculation {
    height: 300px;
}
	.summary{
		padding: 10px
	}
	.current-calculation {
    height: 470px;
}
}