/* ActiveAdmin Custom Styles - Propshaft compatible */

/* 대시보드 커스텀 스타일 */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 10px 0;
}

.stat-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: white;
}

.stat-card h3 {
  font-size: 2.5em;
  margin: 0 0 5px 0;
  font-weight: bold;
}

.stat-card span {
  font-size: 0.9em;
  opacity: 0.9;
}

.panel-footer {
  margin-top: 15px;
  text-align: right;
}

.panel-footer a {
  color: #5c6bc0;
  font-weight: bold;
}

/* 반응형 */
@media screen and (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
