@charset "utf-8";
/* CSS Document */

        .container {
            width: 500px;
            margin: 50px auto;
            padding: 20px;
        }

h1 {font-family: roboto;
	color: #98b6d8;
	text-align: center;
	
	
}

        form {
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 15px;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
			font-family: roboto;
			background-color: rgba(255, 255, 255, 0.5);
        }
        .form-group input, .form-group textarea {
            width: 95%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
			font-family: roboto;
			background-color: rgba(255, 255, 255, 0.5);
        }
	

        .form-group textarea {
            resize: vertical;
            height: 100px;
        }

 		.wbtn {width: 100%;
            display: block;
            padding: 10px 20px;
            background-color: #c1d9f4;
            color: #fff;
            border: none;
            cursor: pointer;
            text-align: center;
			transition: all 0.3s ease;
			font-family: roboto;
			font-size: 12px;
       		 }

      		  .wbtn:hover {
            background-color: #a6c3e2;
				  font-family: roboto;
			font-weight: 700;
     		   }


        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #c1d9f4;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            text-align: center;
			font-size: 10px;
			transition: all 0.3s ease;
        }
        .btn:hover {
            background-color: #a6c3e2;
        }



        .guestbook {
            margin-top: 20px;
			
        }

        .entry {
            border-bottom: 7px solid #e9eef4;
            padding: 30px;
            position: relative;
			font-family: roboto;
			background-color: rgba(255, 255, 255, 0.5);
			
        }

        .entry:last-child {
            border-bottom: none;
        }

        .entry h3 {
            margin: 0;
            font-size: 15px;
            color: #98b6d8;
			font-family: roboto;
        }

        .entry p {
            margin: 5px 0 0;
            color: #555;
			font-family: roboto;
        }

        .entry time {
            display: block;
            font-size: 12px;
            color: #aaa;
			font-family: roboto;
        }

        .admin-actions {
            position: absolute;
            right: 10px;
            top: 10px;
        }

        .admin-actions button {
            background-color: #ff4d4d;
            color: white;
            border: none;
            padding: 5px 10px;
            margin-left: 5px;
            border-radius: 4px;
            cursor: pointer;
        }

        .admin-actions button.reply {
            background-color: #b3cdf0;
        }
		
		.btn {
        display: inline-block;
        padding: 5px 10px;
        margin: 5px;
        background-color: #b3cdf0;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

    .btn:hover {
        background-color: #9bbce0;
    }

    .btn.btn-delete {
        background-color: #FF4D4D;
    }

    .btn.btn-delete:hover {
        background-color: #cc0000;
    }

    .btn.btn-comment {
        background-color: #b3cdf0;
    }

    .btn.btn-comment:hover {
        background-color: #9bbce0;
    }

    .comment-form {
        margin-top: 10px;
        padding: 10px;
        background-color: #f9f9f9;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    .comments {width: 90%;
        margin-top: 10px;
        padding: 20px 20px 0 20px;
        border-top: 2px dashed #dde6ed;
    }
		
		.btn-twitter {
    display: inline-block;
    padding: 5px 10px;
    background-color: #b3cdf0;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 5px;
}

.btn-twitter:hover {
    background-color: #9bbce0;
}


.comment img {
    width: 100%;
    height: auto;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}


/* 페이지네이션 감싸는 영역 */
.pagination-wrapper {
	width: 100%;
    display: flex;
    justify-content: center; /* 가운데 정렬 */
    align-items: center; /* 수직 중앙 정렬 */
    margin-top: 20px; /* 위쪽 여백 */
	font-family: roboto;
	background-color: rgba(255, 255, 255, 0.5);
	color: #a1c1e5;
}

/* 페이지네이션 스타일 */
.pagination {
    display: flex;
    gap: 10px; /* 버튼 간격 */
    padding: 10px 20px;
	color: #a1c1e5;
	list-style: none;
}

/* 페이지 링크 스타일 */
.pagination a {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    color: #a1c1e5;
    border: 1px solid #e9eef4;
    background-color: white;
    transition: background-color 0.3s, color 0.3s;
}

.pagination a:hover {
    background-color: #a1c1e5;
    color: white;
	font-weight: 700;
}

/* 현재 페이지 스타일 */
.pagination .current {
    display: inline-block;
    padding: 8px 16px;
    background-color: #333;
    color: white;
    border-radius: 4px;
    font-weight: bold;
}
		
		.pagination a, .pagination .current {
    font-size: 12px; /* 원하는 크기로 변경 */
}
	

.pagination ul {
    display: flex; /* 가로 정렬 */
    justify-content: center; /* 가운데 정렬 */
    align-items: center; /* 세로 중앙 정렬 */
    list-style: none; /* 점 제거 */
    padding: 0; /* 기본 패딩 제거 */
    margin: 0; /* 기본 마진 제거 */
	gap:10px;
}