.crw-widget { 
    background: #f9f9f9; 
    padding: 20px; 
    border-radius: 10px; 
    font-family: sans-serif; 
    max-width: 100%; 
    box-sizing: border-box; 
}

.crw-overall { 
    text-align: center; 
    margin-bottom: 20px; 
	display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.crw-circle-container {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0px 30px 0px 0px;
}

.crw-circle-progress {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    -webkit-mask: radial-gradient(transparent 55%, black 56%);
    mask: radial-gradient(transparent 55%, black 56%);
}

.crw-circle-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    z-index: 2;
}

.crw-circle-value span {
    display: block;
    line-height: 1;
}

.crw-rating-tag {
    font-weight: bold;
}

.crw-bars { 
    display: flex; 
    flex-direction: column; 
    gap: 2px; 
}

.crw-bar { 
    margin-bottom: 10px; 
}

.crw-label { 
	font-size: 0.9em;
    font-weight: 600; 
    margin-bottom: 4px; 
    display: block; 
}

.crw-bar-bg { 
    background: #eee; 
    height: 16px; 
    border-radius: 4px; 
    overflow: hidden; 
}

.crw-bar-fill { 
    height: 100%; 
    color: #fff; 
    text-align: right; 
    padding-right: 6px; 
    font-weight: 600; 
    font-size: 0.8em; 
    display: flex; 
    align-items: center; 
    justify-content: flex-end; 
}


/* Mobile responsiveness */
@media (max-width: 600px) {
    .crw-widget {
        padding: 15px;
    }
    
    .crw-circle-container {
        width: 70px;
        height: 70px;
    }
    
    .crw-circle-value {
        width: 50px;
        height: 50px;
        font-size: 1em;
    }
    
    .crw-bar-fill {
        font-size: 0.8em;
    }
    
    .crw-bar-bg {
        height: 18px;
    }
}


@media (min-width: 600px) {
    .crw-overall { 
	display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.crw-circle-container {
    margin: 0px 30px 0px 0px;
	} }

@media (max-width: 600px) {
    .crw-overall { 
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.crw-circle-container {
    margin: 0px 0px 0px 0px;
	} }