/* 커스텀 스타일 (Tailwind로 처리하기 애매한 것들) */

.rank-badge-1 {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}
.rank-badge-2 {
  background: linear-gradient(135deg, #d1d5db, #9ca3af);
}
.rank-badge-3 {
  background: linear-gradient(135deg, #fdba74, #ea580c);
}

.split-view-frame {
  width: 100%;
  height: 100%;
  border: none;
}

.tab-btn.active {
  color: #0f766e;
  border-bottom: 2px solid #0f766e;
  font-weight: 700;
}

.month-pill.active {
  background-color: #0f766e;
  color: white;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.star-input i {
  cursor: pointer;
  transition: transform 0.1s;
}
.star-input i:hover {
  transform: scale(1.2);
}

.photo-thumb {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 0.5rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: fadeIn 0.25s ease-out;
}
