#most-seen-chart-container{
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

#most-seen-chart-container h2{
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

#most-seen-chart{
    width: 100%;
    height: 350px;
}

.no-data-message{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    font-size: 18px;
    font-weight: bold;
    max-width: 90%;
    display: block;
    text-align: center;
}