/* Estilo do Widget MyTFrequencyBar - Nome no topo e barra abaixo */

.freq-bar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 12px;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
    transition: all 0.2s ease;
}

.freq-bar-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.freq-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.freq-bar-name {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
}

.freq-bar-value {
    font-size: 13px;
    font-weight: 700;
}

.freq-bar-track {
    width: 100%;
    height: 10px;
    background: #f1f5f9;
    border-radius: 6px;
    overflow: hidden;
}

.freq-bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.6s ease-in-out;
}
