.calculator {
    background-color: white;
    border-radius: 30px;
    padding: 20px;
		margin-top: 48px;
    box-shadow: -3px -1px 7.8px 0px rgba(0, 0, 0, 0.25), 2px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.input-group {
    margin-bottom: 20px;
}
.license-number {
	margin-left: 79px !important;
  padding-right: 83px !important;
}

label {
    display: block;
    margin-bottom: 10px;
}

input[type="range"] {
    width: 100%;
    background: #FFE4E9;
    outline: none;
    transition: opacity 0.2s;
}

input[type="range"]:hover {
    opacity: 1;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px !important;
    height: 15px !important;
    background: #ed1a3b !important;
    cursor: pointer;
    border-radius: 50%;
}

input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    width: 15px !important;
    height: 15px !important;
    background: #ed1a3b;
    cursor: pointer;
    border-radius: 50%;
}

#licenses {
    height: 10px !important;
    padding: 0 !important;
    -webkit-appearance: none;
}

.graph-container {
    position: relative;
    height: 400px;
    margin-bottom: 20px;
}

#earnings-overlay {
    position: absolute; 
    display: none;
    background-color: #fff;
    border: 1px solid #d81b60;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 12px;
    color: #333;
    pointer-events: none;
    transform: translate(-50%, -120%);
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
	.calculator {
		max-width: 95vw !important;
	}
}
