.custom-info-box {
    min-height: 110px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    border: 1px solid var(--panel-border-color);
    box-shadow: 0 2px 6px rgba(0,0,0,0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.custom-info-box:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.custom-info-icon {
    width: 100px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.custom-info-content {
    flex: 1;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    overflow: hidden;
}

.custom-info-title {
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.custom-info-data {
    font-size: 18px;
    font-weight: 500;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-progress-bar-wrapper {
    height: 6px;
    background-color: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.custom-progress-bar {
    height: 100%;
    transition: width 0.3s ease;
}

.custom-progress-description,
.custom-info-description {
    font-size: 12px;
    color: #666;
    line-height: 1.2;
}
