/* Page Layout */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
}

.user-info {
    flex: 1;
    max-width: 300px;
    padding: 20px;
    background-color: #f4ede0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #333;
    line-height: 1.8;
}

.user-info h3 {
    margin-bottom: 20px;
    color: #6b8e23;
}

.content {
    flex: 3;
    margin-left: 40px;
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #6b8e23;
    border-bottom: 2px solid #d1c7b7;
    padding-bottom: 5px;
}

.book-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.book-card {
    display: flex;
    justify-content: space-between; /* 요소 간의 공간 분배 */
    align-items: left;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.book-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.book-card .book-image {
    width: 80px;
    height: 100px;
    background-color: #d1c7b7;
    border-radius: 10px;
    margin-right: 15px;
}

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

.book-card .book-info p {
    margin-bottom: 5px;
    font-size: 14px;
}

/* Book Details Section */
.book-details {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin: 40px auto;
    max-width: 900px;
}
  
.book-details .book-image {
  flex: 1;
  max-width: 300px;
  height: 400px;
  /* background-color: #d1c7b7; */
  border-radius: 10px;
  margin-right: 40px;
  overflow: hidden; /* 이미지가 영역을 넘지 않도록 */
}


.book-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 이미지가 영역에 맞게 채워짐 */
  border-radius: 10px; /* 컨테이너와 동일한 곡률 */
}
  
  .book-details .book-info {
    flex: 2;
  }
  
  .book-info h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #6b8e23;
  }
  
  .book-info p {
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  .book-info .status {
    font-weight: bold;
    color: #6b8e23;
    margin-top: 10px;
  }
  
  .book-info .borrow-button {
    display: block;
    margin-top: 30px;
    padding: 15px 20px;
    text-align: center;
    background-color: #6b8e23;
    color: #fff;
    font-size: 18px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    max-width: 150px;
  }
  
  .book-info .borrow-button:hover {
    background-color: #556b2f;
    transform: translateY(-3px); /* 약간 위로 이동 */
  }
  
  /* Book Description Section */
  .book-description {
    max-width: 900px;
    margin: 40px auto;
  }
  
  .book-description h2 {
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #d1c7b7;
    padding-bottom: 10px;
  }
  
  .book-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
  }

/* 페이지네이션 컨테이너 */
.row {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* 컬럼 스타일 (페이지네이션을 가운데 정렬) */
.col {
    text-align: center;
    width: 100%;
}

/* 페이지네이션 스타일 */
.mypagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 페이지네이션 아이템 */
.mypagination li {
    margin: 0 5px;
}

/* 페이지네이션 링크 스타일 */
.mypagination a {
    text-decoration: none;
    color: #6b8e23;
    padding: 8px 16px;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* 페이지네이션 링크 hover 효과 */
.mypagination a:hover {
    background-color: #6b8e23;
    color: white;
}

/* 현재 페이지 스타일 */
.mypagination .active a {
    background-color: #6b8e23;
    color: white;
    font-weight: bold;
}

/* 비활성화된 페이지 스타일 */
.mypagination .disabled a {
    color: #d1c7b7;
    cursor: not-allowed;
}

/* 페이지네이션 첫 번째 및 마지막 페이지 버튼 */
.mypagination .first, .mypagination .last {
    font-weight: bold;
}

/* 찜하기 버튼 스타일 */
.book-info .wish-button {
  display: block;
  margin-top: 30px; /* 대출하기 버튼과의 간격 */
  padding: 15px 20px;
  text-align: center;
  background-color: #e67e22; /* 찜하기 버튼 색상 */
  color: #fff;
  font-size: 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  max-width: 150px;
}

.book-info .wish-button:hover {
  background-color: #d35400; /* 호버 시 색상 변경 */
  transform: translateY(-3px); /* 약간 위로 이동 */
}

/* 찜하기 버튼과 대출하기 버튼 간격 조정 */
.bookButton {
  display: flex;
  flex-direction: row; /* 버튼을 가로로 정렬 */
  gap: 15px; /* 버튼 간의 간격 */
  margin-top: 20px;
  justify-content: flex-start; /* 버튼을 왼쪽 정렬 */
}


/* 삭제 버튼 스타일 */
.delete-section {
  display: flex;
  align-items: center; /* 버튼 세로 정렬 */
  justify-content: center; /* 버튼 가로 정렬 */
}

.delete-section .delete-button {
  display: block;
  margin-bottom: 10px;
  padding: 10px 15px;
  text-align: center;
  background-color:  #6b8e23; /* 삭제 버튼 색상 */
  color: #fff;
  font-size: 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  max-width: 100px; /* 버튼 너비 제한 */
  cursor: pointer;
  border: none; /* 기본 버튼 테두리 제거 */
}

.delete-section .delete-button:hover {
  background-color: #556b2f; /* 호버 시 색상 변경 */
}

/* 삭제 버튼과 다른 버튼 간격 조정 */
.delete-section .delete-button {
  margin-left: auto; /* 오른쪽에 정렬 */
}
