.content {
    margin-top: 7rem;
    width: 60%;
    min-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.boardDiv {
    margin-top: 1em;
    padding: 1em;
    box-shadow: 0px 0px 4px rgba(23, 95, 184, 0.25);
    background-color: white;
    border-radius: 0.5em;
}

.btn {
    margin-top: 1em;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    color: rgba(0, 0, 0, 0.75);
    background-color: #FFF;
    border-color: rgba(0, 0, 0, 0.10);
    transition: 0.25s;
    z-index: 0;
}

.btn:hover {
    background-color: white;
    transform: scale(1.10);
    border-color: #FFF;
    color: #175FB8;
    filter: drop-shadow(0px 0px 2px #6599D7);
    -webkit-appearance: none;
    -moz-appearance: none;
}

.btn:active, .btn:focus {
    box-shadow: none !important;
    outline: none !important;
    background-color: #fff;
    color: #175FB8;
}

.searchBtn {
    margin-left: 1em;
    margin-top: auto;
    margin-bottom: auto;
}

.diffTable {
    padding: 0.5em;
    transition: 0.25s;
}

.diffTable:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

#collectTable:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.detail {
    width: 100%;
}

.tableSearch {
    width: 100%;
}

.paginator {
    margin-top: 10px;
}

.paginator > nav {
    position: relative !important;
    background-color: transparent !important;
}

.pagination {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.5em;
    margin-bottom: 0;
}

.page-link {
    border-radius: 0;
    border: 0;
    transition: 0.25s;
    color: rgba(0, 0, 0, 0.25);
    background-color: transparent !important;
}

.page-link:hover {
    color: #175FB8 !important;
}

.page-link:active, .page-link:focus {
    border: none;
    box-shadow: none;
    outline: none;
}

.page-link:active {
    font-size: 1em;
    color: #175FB8;
}

.active > a{
    color: #175FB8 !important;
}

.page-link:first-child, .page-link:last-child {
    border-top-left-radius: 0em;
    border-bottom-left-radius: 0em;
    border-bottom-right-radius: 0em;
    border-top-right-radius: 0em;
}

/* 페이지 제목 */
h1 {
    font-size: 2em !important;
    font-weight: bold !important;
    margin-bottom: 1em !important;
}

/* 게시판 제목 */
h2 {
    font-size: 1.5em !important;
    font-weight: 600 !important;
    margin-bottom: 0.5em !important;
}

#collectTable > a > h2 {
    margin-bottom: 0 !important;
}

/* 게시물 제목 */
h3 {
    width: 100% !important;
    font-size: 1em !important;
    font-weight: 400 !important;
    padding-right: 1em !important;
    margin-right: 1em !important;
    margin-bottom: 0 !important;
    text-overflow: ellipsis !important;
    white-space : nowrap !important;
    overflow: hidden !important;
}

p {
    font-size: 1rem !important;
    font-weight: normal !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    margin-left: 0.5em !important;
    color: rgba(0, 0, 0, 0.5) !important;
}

/* 게시물 정보 */
p2 {
    font-size: 0.8rem !important;
    font-weight: 400 !important;
    padding-right: 1em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    margin-right: 1em !important;
    border-right: 1px solid rgba(0, 0, 0, 0.25) !important;
    color: rgba(0, 0, 0, 0.5) !important;
}

p2:last-child {
    border: 0;
}

a {
    color: black;
    text-decoration: none;
}

a:hover {
    color: black;
    text-decoration: none;
}

#tableList > a {
    margin-top: 1em;
}

select {
    width: 10%;
    outline: none;
    border-color: rgba(0, 0, 0, 0.1);
    margin-top: auto;
    margin-bottom: auto;
}

#searchInput {
    margin-left: 1em;
}

input, textarea {
    border: 1px solid rgba(0, 0, 0, 0.10);
    padding: 0.2em;
    margin-top: auto;
    margin-bottom: auto;
}

input:focus, textarea:focus {
    background-color: rgba(119, 119, 119, 0.10);
    transition: 0.25s;
    outline: none;
}

input::placeholder, textarea::placeholder {
    font-size: 0.9em;
}

.copyright > p {
    color: black;
    font-size: 0.9em;
    font-weight: 400;
    text-align: right;
    user-select: none;
}