 /*chart-tile.css — styles for the reusable ChartTile View Component*/

.chart-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 420px;
    height: 500px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 15px;
    background-color: #ffd866;
}

.chart-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.chart-sub-title {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
}
