.library-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.library-container h2 {
    font-size: 24px;
    color: #6b8e23;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #d1c7b7;
    padding-bottom: 10px;
}

.library-book-list {
    margin-top: 20px;
}

.library-book-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border: 1px solid #d1c7b7;
    border-radius: 10px;
    background-color: #ffffff;
    margin-bottom: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.library-book-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.library-book-item img {
    width: 80px;
    height: 120px;
    border: 1px solid #d1c7b7;
    margin-right: 17px;
}

.library-book-info {
    flex: 1;
}

.library-book-info p {
    margin-bottom: 5px;
}

.library-book-info p strong {
    font-weight: bold;
}

/* 검색창 스타일 */
.library-search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.library-search-container input {
    width: 60%;
    padding: 10px;
    border: 1px solid #d1c7b7;
    border-radius: 5px;
    margin-right: 10px;
}

.library-search-container button {
    padding: 10px 20px;
    background-color: #6b8e23;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.library-search-container button:hover {
    background-color: #556b2f;
}