/* °ßÀû¹®ÀÇ */

.quote-board-container {
    width: 100%;
    margin: 20px auto;
}

.quote-board-container .board-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

.quote-board-container .board-table thead th {
    background-color: #fdd835;
    color: #000;
    padding: 10px;
    text-align: left;
    font-size: 16px;
    border-bottom: 2px solid #ddd;
}

.quote-board-container .board-table tbody td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.quote-board-container .board-table .number-column {
    width: 10%;
}

.quote-board-container .board-table .number {
    color: red;
    font-weight: 400;
}

.quote-board-container .board-table .new-icon {
    background-color: red;
    color: white;
    font-size: 12px;
    padding: 3px 6px;
    margin-right: 8px;
    border-radius: 3px;
    font-weight: bold;
}

.quote-board-container .inquiry-button {
    background-color: #0288d1;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    float: right;
    margin-top: 10px;
	margin-bottom: 10px;
}

.quote-board-container .inquiry-button:hover {
    background-color: #0277bd;
}

.quote-board-container .board-table td:nth-child(2) {
    width: 50%;
}

.quote-board-container .board-table td:nth-child(3),
.quote-board-container .board-table td:nth-child(4),
.quote-board-container .board-table td:nth-child(5) {
    width: 15%;
}






/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    list-style-type: none;
    padding: 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination a {
    color: #333;
    padding: 4px 8px;
    text-decoration: none;
    font-size: 14px;
}

.pagination a:hover {
	font-weight:bold;
}

.pagination a.active {
    background-color: #777;
    color: white;
}

.pagination .prev-button,
.pagination .next-button {
    font-weight: 400;
	font-size: 18px;
}