.severance-calculator {
    width: 100%;
    text-align: left;
}
.severance-calculator label{
	display:block;
	margin:20px 0;
}
#progressbar {
    background-color: #e0e0e0;
    border-radius: 13px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress {
    height: 20px;
    width: 0;
    background-color: #4caf50;
    transition: width 0.4s;
}

.step {
    display: none;
}

.step.active {
    display: block;
}
.severance-calculator label{
	display:block;
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.radio {
    position: relative;
    padding-left: 30px; /* Adjust as needed for spacing */
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
    display: inline-block;
}

.radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
	bottom:0;
	margin:auto;
    height: 20px; /* Adjust size of radio dot */
    width: 20px; /* Adjust size of radio dot */
    background-color: #ccc; /* Unselected color */
    border-radius: 50%;
}

.radio input:checked ~ .checkmark {
    background-color: #2196F3; /* Selected color */
}

.radio input:checked ~ .checkmark:after {
    display: block;
}

.checkmark:after {
    content: '';
    position: absolute;
    display: none;
    top: 5px;
    left: 5px;
    width: 10px; /* Adjust size of inner dot */
    height: 10px; /* Adjust size of inner dot */
    border-radius: 50%;
    background: white;
}

h5#results {
    color: #000;
}
#response-message {
    border: 1px solid transparent;
    margin-top: 30px;
    padding: 0px;
    max-width: 480px;
}

#response-message {
    margin-top: 30px;
    padding: 0px 0px;
    max-width: 480px;
}
#response-message ul{
    list-style:none;
    padding:0;
    margin:0px;
    display:flex;
    flex-wrap: wrap;
    flex-shrink:1;
/*     justify-content:center; */
}
#response-message ul li{
    border:1px solid #101010;
    flex-basis: 14vw;
    padding:10px;
}

#response-message ul li h3{
    font-size:18px
}
/* Styling for Severance Calculator Submit Button */
.severance-btn {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
	margin-top: 20px;
}

.severance-btn:hover {
    background-color: #005d8f;
}
