.traffic-header{
    font-size: 14px;
    line-height: 17px;
    color: #777572;
    font-weight: 100;
    display: flex;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}
.traffic-light {
    display: flex;
    column-gap: 2px;
    justify-content: center;
}

.traffic-light-item {
    border: 1px solid #474747;
    border-radius: 30px;
    width: 72px;
    height: 105px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: black;
    filter: drop-shadow(0px 14px 23px rgba(0, 0, 0, 0.182));
    background-color: white;
}

.traffic-light-item .line1 {
    font-size: 12px;
    font-weight: bold;
}
.traffic-light-item .line2 {
    font-size: 16px;
    font-weight: bold;
}
.traffic-light-item .line3 {
    font-size: 12px;
    border: 1px solid #474747;
    border-radius: 30px;
    background-color: white;
    width: 46px;
    line-height: 16px;
    text-align: center;
}
.traffic-light-item .line4 {
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
}
.traffic-light-item.low {
    background-color: #7BC35F;
}
.traffic-light-item.med {
    background-color: #FFD159;
}
.traffic-light-item.high {
    background-color: #F05828;
}

.star-rating {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}
.star-link {
    display: flex;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 30px;
}
.star-link a {
    color:#727377;
    font-size: 14px;
    font-weight: 100;
    text-decoration: underline;
}

