.dashboard-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: inherit;
    color: #333;
}

.dashboard-header {
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.dashboard-nps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.nps-label {
    font-size: 1.2em;
    margin-right: 10px;
}

.info-icon {
    font-size: 0.8em;
    margin-left: 10px;
    cursor: pointer;
    position: relative;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.nps-tooltip {
    display: none;
    position: absolute;
    background-color: #f0f0f0;
    color: #333;
    padding: 5px;
    border-radius: 5px;
    font-size: 0.8em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
    white-space: nowrap;
}

.nps-circle {
    width: 80px;
    height: 80px;
    border: 4px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

.dashboard-average-rating {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dashboard-average-rating .star {
    color: #f39c12;
}

.dashboard-average-rating .reviews-count {
    font-size: 0.9em;
    color: #555;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chart-header h3 {
    margin: 0;
    font-size: 1.5em;
    font-weight: bold;
}

.filter-container {
    font-size: 0.9em;
}

.filter-container a {
    margin: 0 5px;
    text-decoration: none;
    color: #0073aa;
    font-weight: bold;
}

.filter-container a.active {
    color: #333;
}

.filter-container a:hover {
    text-decoration: underline;
}

.chart-container {
    margin: 20px 0;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
