/* 제목 스타일 */
h3.title {
    cursor: pointer;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
h3.title:hover {
    background: #f0f0f0;
    color: #007BFF;
}

/* 수정 박스 스타일 */
#edit-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    animation: fadeIn 0.2s ease-in-out;
    width: 300px; /* 고정 너비 */
}

#edit-box input[type="text"] {
    flex: 1;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    min-width: 0; /* flex 줄바꿈 방지 */
}

#edit-box button {
    padding: 6px 12px;
    background: #007BFF;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap; /* 버튼 줄바꿈 방지 */
}

#edit-box button:hover {
    background: #0056b3;
}

/* 애니메이션 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

p.title {
	font-size: 30px;
	display: block !important;
}
p.title1 {
	font-size: 15px;
}
p.title2 {
	font-size: 15px;
	display:block;
}


