body {
  margin:0;
  font-family:'Pretendard', sans-serif;
  background:#f6fff6;
}

/* 상단 */
.topbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 25px;
  background:#c9f7c9;
}

.logoImg {
  height:38px;
  cursor:pointer;
}

/* 검색 */
.searchBox {
  display:flex;
  justify-content:center;
  gap:10px;
  margin:20px;
}

.searchBox input {
  width:250px;
  padding:10px;
  border-radius:10px;
  border:1px solid #ccc;
}

.searchBox button {
  background:#2ecc71;
  border:none;
  color:white;
  padding:10px 14px;
  border-radius:10px;
  cursor:pointer;
}

/* grid */
.grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:15px;
  padding:20px;
}

/* 카드 */
.card {
  background:white;
  padding:20px;
  border-radius:15px;
  box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

/* 즐겨찾기 */
.bmItem {
  display:flex;
  justify-content:space-between;
  margin:5px 0;
}

/* 메모 */
textarea {
  width:100%;
  min-height:180px;
  max-height:600px;
  padding:12px;
  border-radius:12px;
  border:1px solid #ddd;
  font-size:15px;
  line-height:1.5;
  resize: both;
}

/* GPT 입력 */
.gptBox {
  display:flex;
  gap:8px;
}

.gptBox input {
  flex:1;
  padding:10px;
  border-radius:10px;
  border:1px solid #ccc;
}

.gptBox button {
  padding:10px 12px;
  border:none;
  border-radius:10px;
  background:#2ecc71;
  color:white;
  cursor:pointer;
}