﻿/*JS 라이브러리 DataTable의 검색어 필터 위치*/
.dt-search {
    text-align: right;
    margin-top: 10px;
    margin-bottom: 10px;
}

/*몇건씩 볼건지*/
.dt-length .dt-input {
    color: black;
    border-radius: 15px;
}

.dt-search .dt-input {
    width: 200px !important;
    border: 1px solid #bdb7c7 !important;
    border-radius: 5px;
    background-color: white;
    color: black;
    padding: 5px;
}

div.dt-container div.dt-length,
div.dt-container div.dt-info {
    text-align: left !important;
}

div.dt-container div.dt-search {
    text-align: right !important;
}

.dt-paging {
    display: flex;
    justify-content: end;
}

    .dt-paging nav {
        margin-top: 10px;
    }

.dt-paging-button {
    margin: auto 3px;
    padding: 1px 7px;
    border: 1px solid #bdb7c7;
    border-radius: 5px;
    background-color: transparent;
    white-space: nowrap;
    -webkit-user-drag: none;
    user-select: none;
    color: black;
}

#lastBtn .dt-buttons {
    display: flex;
    justify-content: center;
}
@media screen and (max-width:576px) {
    #lastBtn .dt-buttons {
        display: flex;
        justify-content: end;
    }
}

.buttons-html5 {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    color: white;
    font-weight: bold;
    border-radius: 15px;
    background-color: seagreen;
    border: none;
    transition: all 0.3s;
}

    .buttons-html5:hover {
        transform: scale(1.05);
        transition: all 0.3s;
    }
