/* Контейнер: Сетка 2 колонки */
.wptr-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
    margin: 40px 0;
    padding: 25px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.wptr-item {
    margin-bottom: 5px;
}

/* Заголовок и иконка */
.wptr-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.wptr-title {
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

.wptr-info-icon {
    width: 18px;
    height: 18px;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s;
    position: relative;
}

.wptr-info-icon:hover {
    color: #1a73e8;
}

/* Полоса прогресса */
.wptr-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wptr-bar-bg {
    flex-grow: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.wptr-bar-fill {
    height: 100%;
    border-radius: 4px;
    width: 0; /* Изначально скрыто для анимации */
    /* Transition теперь управляется через JS для рандомной скорости */
}

.wptr-value {
    font-size: 14px;
    font-weight: 800;
    width: 55px;
    text-align: right;
    font-family: monospace; 
}

/* --- Всплывающий Тултип --- */
.wptr-tooltip {
    position: fixed;
    background: #333;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.4;
    z-index: 10000;
    max-width: 250px;
    pointer-events: none; 
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateY(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.wptr-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

/* Адаптив */
@media (max-width: 600px) {
    .wptr-container {
        grid-template-columns: 1fr; 
        padding: 20px;
        gap: 20px;
    }
}