/* Container chính cho biểu đồ giá */
.bieudogia-container {
    margin: 0 0 10px 0;
    padding: 10px 5px;
    background: #fffbf0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0e68c;
}

/* Tiêu đề biểu đồ */
.bieudogia-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 20px 0;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #ddd;
}

/* Wrapper cho biểu đồ */
.bieudogia-chart-wrapper {
    position: relative;
    height: 400px;
    overflow-x: auto;
    margin-bottom: 15px;
}

.bieudogia-chart-wrapper canvas {
    max-width: 100%;
    height: 100% !important;
}

/* Ghi chú dưới biểu đồ */
.bieudogia-note {
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
    color: #666;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.bieudogia-note em {
    font-style: italic;
}

/* Wrapper cho nút xuất */
.bieudogia-export-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Nút xuất biểu đồ */
.bieudogia-export-btn {
    background: linear-gradient(45deg, #007cba, #0073aa);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bieudogia-export-btn:hover {
    background: linear-gradient(45deg, #005a87, #005177);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.bieudogia-export-btn:active {
    transform: translateY(0);
}

/* Responsive design cho màn hình nhỏ */
@media (max-width: 768px) {
    .bieudogia-container {
        margin: 0 0 10px 0;
        padding: 8px 3px;
    }
    
    .bieudogia-title {
        font-size: 16px;
    }
    
    .bieudogia-chart-wrapper {
        height: 300px;
    }
    
    .bieudogia-export-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
}