.lcpro-frequency-container {
  max-width: 900px;
  margin: 2em auto;
  padding: 1.5em;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.lcpro-frequency-section h3 {
  color: #0073aa;
  margin-bottom: 0.5em;
}

.lcpro-ball-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1em;
}

.lcpro-ball {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f2f9ff;
  color: #000;
  border: 2px solid #0073aa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  position: relative;
}

.lcpro-ball.cold {
  border-color: #555;
  background: #fafafa;
}

.lcpro-ball .freq-count {
  font-size: 11px;
  color: #555;
  position: absolute;
  bottom: 5px;
}

@media (max-width: 600px) {
  .lcpro-ball {
    width: 45px;
    height: 45px;
    font-size: 15px;
  }
}
.lcpro-table-wrap { overflow-x: auto; }
.lcpro-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.5em 0 1.2em;
  font-size: 15px;
}
.lcpro-table th, .lcpro-table td {
  border-bottom: 1px solid #e8e8e8;
  padding: 8px 10px;
  text-align: center;
}
.lcpro-table thead th {
  background: #f3f8fb;
  color: #333;
  font-weight: 700;
}
.lcpro-table tbody tr:nth-child(odd) { background: #fafcff; }
.lcpro-table tbody tr:hover { background: #f0f8ff; }

/* small ball for table cells */
.lcpro-ball.small {
  width: 30px; height: 30px; font-size: 14px;
  border-radius: 50%; border: 2px solid #0073aa; background: #fff; color: #000;
  display: inline-flex; align-items: center; justify-content: center;
  box-sizing: border-box; font-weight: 700;
}
.lcpro-ball.small.lucky {
  background: radial-gradient(circle at 30% 30%, #ffec80, #ffcc00);
  border-color: #d4a017; color: #000;
}
@media (max-width: 600px) {
  .lcpro-table { font-size: 14px; }
  .lcpro-table th, .lcpro-table td { padding: 6px 8px; }
  .lcpro-ball.small { width: 26px; height: 26px; font-size: 13px; }
}
