/* Â÷Æ® ÄÁÅ×ÀÌ³Ê */
.chart-main {
  width: 100%;
  /* ±âº»(PC): »ó´Ü ³×ºñ°ÔÀÌ¼Ç(¾à 60px)À» »« ³ª¸ÓÁö ³ôÀÌ ²Ë Ã¤¿ì±â */
  height: calc(100vh - 70px);
  min-height: 500px; /* ³Ê¹« ÀÛ¾ÆÁü ¹æÁö */
  background: #fff;
  position: relative;
}

/* [½Å±Ô] ¸®½ºÆ® ºÐ¼® ºä ½ºÅ¸ÀÏ */
.list-view-container {
  display: none; /* ±âº» ¼û±è */
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  height: 100%;
  overflow-y: auto;
}
.stat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.stat-table th {
  text-align: left;
  padding: 12px;
  border-bottom: 2px solid #8e44ad;
  color: #8e44ad;
  font-weight: 800;
}
.stat-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  position: relative;
}
.stat-bar-bg {
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  background: rgba(142, 68, 173, 0.15);
  z-index: 0;
  border-radius: 4px;
}
.rank-badge {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #8e44ad;
  color: white;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  font-size: 10px;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .content-area {
    padding: 10px; /* ¸ð¹ÙÀÏ ¿©¹é */
  }

  .chart-main {
    width: 100%;
    /* ¡Ú ÇÙ½É: °¡·Î ¼¼·Î ºñÀ²À» 1:1·Î °íÁ¤ (Á¤»ç°¢Çü) */
    aspect-ratio: 1 / 1;

    /* ³ôÀÌ °­Á¦ ¼³Á¤À» ÇØÁ¦ÇÏ°í ºñÀ²À» µû¸£µµ·Ï ÇÔ */
    height: auto !important;
    min-height: auto;

    /* ±×¸²ÀÚ µîÀ¸·Î ¹Ú½º ´À³¦ °­Á¶ */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
  }

  /* ¸®½ºÆ® ºäµµ ¸ð¹ÙÀÏ¿¡¼­ ±ò²ûÇÏ°Ô */
  .list-view-container {
    margin-top: 20px;
  }
}
