/* 로그인 */
.login-page {
    height: 100%;
}

.login-wrap {
    width: 100%;
}

.logo img {
    margin: auto;
}

.login-input {
    border: 0;
}

.login-page .input-group {
    border-bottom: 1px solid #ddd;

}

.certification {
    position: relative;
}

.certification>button {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

/* 홈화면 */
.item {
    padding: 10px;
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid #eee;
}

.img-zone {
    width: 100%;
    height: 200px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.img-zone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.tag {
    display: inline-block;
    padding: 5px;
    background-color: #eee;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.item-title {
    color: var(--blue);
    font-size: 1.3rem;
}

.item-table th,
.item-table td {
    padding: 5px 0;
}

.comment-zone {
    padding: 5px 0;
    border-top: 1px solid #ddd;
}

.comment-zone>details>summary>span {
    font-size: 1.2rem;
}

/* 등록 */

.input-group>label {
    display: block;
}

.text-area {
    width: 100%;
    background-color: var(--white);
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 5px;
}

.file-zone {
    width: 100%;
    border-top: 1px solid #ddd;
}

.comment-bottom,
.btn-wrap {
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.comment-input {
    border: 1px solid #eee;
    border-radius: 5px;
}

.comment-input input {
    border: none;
}

/* 조회 */
.search-zone {
    padding: 10px;
    background-color: var(--skyblue);
    border: 1px solid var(--primary-lignt);
    border-radius: 5px;
}

/* eot */

.selected-date{
    font-size: 1.6rem;
    font-weight: bold;
}


/* table zone */
.chart-zone table{
    border-top: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
}
.chart-zone table thead th{
    background-color: var(--primary-lignt);
    color: var(--blue);
    border-top: 1px solid var(--gray);
    border-left: 1px solid var(--gray);
    font-size: 1.4rem;
    padding: 10px;
}

.chart-zone table tbody td{
    border-top: 1px solid var(--gray);
    border-left: 1px solid var(--gray);
    text-align: center;
    padding: 10px;
}

.chart-zone table thead th:first-child,
.chart-zone table tbody td:first-child{
    border-left: 0;
}