/* Analytics Module CSS */
.hourly-bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
    gap: 8px;
}
.bar-value {
    font-size: 10px;
    font-weight: 600;
    color: var(--primary);
}
.bar-pill {
    width: 100%;
    max-width: 30px;
    background: linear-gradient(to top, var(--primary), #a5b4fc);
    border-radius: 4px 4px 0 0;
    min-height: 4px;
    transition: height 0.3s ease;
}
.bar-label {
    font-size: 11px;
    color: var(--text-muted);
}
.top-item-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.top-item-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 500;
}
.top-item-sold {
    font-weight: 600;
    color: var(--primary);
}
.top-item-progress-track {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    overflow: hidden;
}
.top-item-progress-bar {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
    transition: width 0.3s ease;
}
.hourly-chart-container {
    height: 250px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 20px 10px;
}
.top-items-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
