@import url('https://fonts.googleapis.com/css?family=Roboto:700');


#holder{
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    background: white;
    padding: 10px;
    width: 250px;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-65%);
    box-shadow: 0px 3px 8px rgba(0,0,0,0.25);
    border-radius: 2px;
}

.button {
    background: #3D4C53;
    width: 170px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    border: none; /* 기본 테두리 제거 */
    outline: none; /* 클릭 시 생기는 외곽선 제거 */
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btnTwo {
    position : relative;
    width : 190px;
    height : 100px;
    margin-top: -100px;
    padding-top: 2px;
    background : #26A69A;
    left : -250px;
    transition : .3s;
}
.btnText {
    color : white;
    transition : .3s;
    margin-top: 7px;
}
.btnText2 {
    margin-top : 59px;
    margin-right : -125px;
    color : #FFF;
}
.button:hover .btnTwo{ /*When hovering over .button change .btnTwo*/
    left: -130px;
}
.button:hover .btnText{ /*When hovering over .button change .btnText*/
    margin-left : 65px;
}
.button:active { /*Clicked and held*/
    box-shadow: 0px 5px 6px rgba(0,0,0,0.3);
}

.filebox .upload-name {
    display: inline-block;
    height: 40px;
    padding: 0 10px;
    vertical-align: middle;
    border: 1px solid #dddddd;
    width: 78%;
    color: #999999;
}

.filebox label {
    display: inline-block;
    padding: 8px 20px;
    color: #fff;
    vertical-align: middle;
    background-color: #999999;
    cursor: pointer;
    height: 40px;
    width: 120px;
    margin-left: 10px;

}

.filebox input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.overlay > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: white;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.overlay > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: white;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.page-item .active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.dropdown-label {
    font-size: 12px;
    margin: 10px;
    font-weight: bold;
    color: rgb(50, 50, 50);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    display: block;
    border-radius: 4px;
    font-weight: 200;
    color: #000000;
    height: 30px;
    width: 110px;
    font-size: 12px;
    z-index: 1;
    position: relative;
    background: #ffffff url(../images/dropDown.png) no-repeat right;
    background-size: 20px 20px;
    border-top-width: thin;
    border-right-width: thin;
    border-bottom-width: thin;
    border-left-width: thin;
    text-align: start;
}

.dropdown-content {
    display: none;
    width: 110px;
    position: absolute;
    font-weight: 400;
    text-align: center;
    background-color: #fcfcfc;
    border-radius: 8px;
    overflow: scroll;
    box-shadow: 0px 0px 10px 3px rgba(190, 190, 190, 0.6);
}

.dropdown-content::-webkit-scrollbar {
    width: 5px;
    height: 10px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: rgb(194, 194, 194);
}

.dropdown-content div {
    display: block;
    text-decoration: none;
    color: rgb(37, 37, 37);
    font-size: 12px;
    padding: 12px 20px;
}

.dropdown-content div:hover {
    background-color: rgb(226, 226, 226);
}

.dropdown-content.show {
    display: block;
}

.search-input{
    background: url("../images/search.png") no-repeat left;
    background-size: 20px 20px;
    border-radius: 5px;
    background-position-x: 2px;
    text-align: end;
    padding: 0px 6px;
    width: 200px;
    height: 30px;
    margin-left: 3px;
    border-width: thin;
}
.search-input:focus {
    outline: none;
}

.pagination {
    display: flex;
    list-style: none;
    border-radius: .25rem;
    flex-direction: column-reverse;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
}
table td.storeList_td {
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    vertical-align: middle;
}


.field-error {
     border-color: red;
     color: red;
}

.update-input {
    margin-left: 10px;
    width: 60%;
}

.update-div {
    display: flex;
    margin: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: flex-end;
}

.update-div label {
    width: 100px;  /* 고정된 너비 설정 */
    text-align: left;  /* 오른쪽 정렬 */
    margin-right: 10px;  /* 입력 필드와 간격 */
}

.flex-normal {
    display: flex;
    justify-content: center;
}

.login-input {
    width: 312px!important;
    height: calc(1.5em + .75rem + 2px);
    margin-top: 10px;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.login-div {
    display: flex;
    flex-direction: column;
}

.signup-div {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.login-remember-div {
    display: flex;
    margin-top: 10px;
}

.login-remember-input {
    width: 20px;
    height: 20px;
    margin-right: 5px
}

.logForm_jum {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logForm_div {
    display: flex;
    height: 700px;
    flex-direction: column;
}

.custom_table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
}

table td.log_td{
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    vertical-align: middle;
}

.logout_btn {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    background-color: transparent;
    border: none;
}

.entry-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* 가운데 정렬 */
    gap: 10px;
}

.entry {
    flex: 1 1 calc(33.333% - 10px);  /* 기본 3등분 */
    max-width: 100%;
    min-width: 280px;  /* 너무 작아지지 않도록 */
}
