﻿.main-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 5px;
    border: 2px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
}

.chart-container {
    width: 100%;
    position: relative;
    margin: 2px;
}

.bar-chart-container {
    width: 100%;
    position: relative;
    margin: 5px;
}

.legend-container {
    margin-top: 5px;
    text-align: left;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.legend-color {
    width: 10px;
    height: 10px;
    margin-right: 5px;
    display: inline-block;
    border-radius: 999px;
}

h1 {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}


.rating-bar {
    font-family: "Roboto", sans-serif;
    font-size: 20px; /* Adjust the size as needed */
    font-weight: 900;
    display: flex;
    align-items: center;
    height: 50px;
    background-color: #4f9239; /* Green background */
    border-radius: 5px;
}

.rating-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    height: 100%;
    font-family: 'Times New Roman';
}

.rating-score {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f9239; /* Green color for text */
    background-color: white; /* White background */
    height: 100%;
    border: 1px solid black;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    font-family: 'Times New Roman';
}



.custom-tooltip {
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    display: none;
    pointer-events: none;
    z-index: 10;
}

.chart-container:hover .custom-tooltip {
    display: block;
}



.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 30%;
    border-radius: 50%;
    overflow: hidden;
}

    .center-logo img {
        width: 100%;
        height: 100%;
    }
