 .traffic-card {
        min-height: 58px;
        display: flex;
        align-items: center;
        border: 1px solid #eee;
        border-radius: 10px;
        padding: 6px 8px;
        overflow: hidden;
      }

      .chart {
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 50%;
        position: relative;
        margin-right: 8px;
        flex-shrink: 0;
      }
      .chart::after {
        content: "";
        position: absolute;
        width: 22px;
        height: 22px;
        background: #fff;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }

      .info {
        flex: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px 6px;
        min-width: 0;
      }

      .item {
        display: flex;
        align-items: center;
        font-size: 10px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
      }

      .dot {
        width: 6px;
        height: 6px;
        min-width: 6px;
        border-radius: 50%;
        margin-right: 4px;
      }

      .label {
        overflow: hidden;
        text-overflow: ellipsis;
      }
      .percent {
        margin-left: 3px;
        font-weight: bold;
        color: #666;
      }

      .pink {
        background: #e91e63;
      }
      .blue {
        background: #1565c0;
      }
      .green {
        background: #2e7d32;
      }
      .orange {
        background: #ff9800;
      }
      .purple {
        background: #9c27b0;
      }

      @media (max-width: 480px) {
        .traffic-card {
          min-height: 54px;
          padding: 5px 6px;
        }
        .chart {
          width: 40px;
          height: 40px;
          min-width: 40px;
        }
        .chart::after {
          width: 18px;
          height: 18px;
        }
        .item {
          font-size: 9px;
        }
        .percent {
          margin-left: 2px;
        }
      }
