#wc-weight-meter-container {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
}

.weight-meter {
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #ccc;
    padding: 8px;
    width: 250px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    font-size: 14px;
}

.meter-bar {
    position: relative;
    height: 20px;
    background: #eee;
    margin-bottom: 5px;
}

.meter-fill {
    height: 100%;
    background-color: #2ea2cc;
    transition: width 0.3s ease;
}

.tier-markers {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
}

.tier-marker {
    position: absolute;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: red;
    transform: translateX(-50%);
}

.tier-marker span {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 10px;
    white-space: nowrap;
    background: #fff;
    padding: 2px 4px;
    border: 1px solid #ccc;
    border-radius: 3px;
    z-index: 10;
}
