/* 전체 기본 설정 */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
  background: #0f172a;
  color: white;
}

/* 컨테이너 */
.container {
  max-width: 500px;
  margin: auto;
  padding: 15px;
}

/* 타이틀 */
.title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #e2e8f0;
}

/* 검색 영역 */
.search-box {
  width: 100%;
  margin-bottom: 10px;
}

.input-row {
  display: flex;
  gap: 6px;
}

input {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #1e293b;
  color: white;
  font-size: 14px;
}

/* 버튼 */
button {
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #3b82f6;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: #2563eb;
  opacity: 0.8;
}

button:active {
  transform: scale(0.96);
}

.favorite-btn {
  margin-top: 12px;
}

/* 카드 */
.card {
  background: #1e293b;
  border-radius: 16px;
  padding: 15px;
  margin-top: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* 점수 */
.score {
  font-size: 28px;
  font-weight: bold;
}

/* 상위 종목 리스트 */
.top-item {
  padding: 12px;
  border-bottom: 1px solid #334155;
  cursor: pointer;
  transition: 0.2s;
}

.top-item:hover {
  background: #334155;
}

.top-item:active {
  transform: scale(0.97);
}

/* 코멘트 */
.top-comment {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
  line-height: 1.4;
}

/* 팩터 */
.factor {
  margin-bottom: 12px;
}

.factor-name {
  font-size: 14px;
}

.factor-score {
  float: right;
}

/* 바 */
.bar {
  height: 8px;
  border-radius: 5px;
  background: #334155;
  margin-top: 5px;
}

.bar-fill {
  height: 100%;
  border-radius: 5px;
}

/* 자동완성 */
#autocomplete {
  background: #1e293b;
  border-radius: 10px;
  margin-top: 5px;
  max-height: 200px;
  overflow-y: auto;
}

.item {
  padding: 8px 10px;
  font-size: 13px;
  cursor: pointer;
  border-bottom: 1px solid #334155;
}

.item:hover {
  background: #334155;
}

/* 관심종목 */
.favorite-row {
  display:flex;
  justify-content:space-between;
  align-items:center;
}
/*
#favorites div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
*/

/* 스크롤바 (크롬) */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: #475569;
  border-radius: 3px;
}

/* 모바일 최적화 */
@media (max-width: 600px) {
  .title {
    font-size: 18px;
  }

  .score {
    font-size: 24px;
  }

  input {
    font-size: 13px;
  }

  button {
    font-size: 13px;
  }
}