@charset "utf-8";

/* 정렬 */
.flex {
    display: flex;
    align-items: center;
}

.flex-start {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


/* btn */
.small-btn {
    padding: 3px 6px;
    border-radius: 5px;
}

.large-btn {
    height: 100%;
    padding: 5px 10px;
    border-radius: 5px;
}

.logout-btn {
    padding: 5px 10px;
    color: #aaa;
}

.blue-btn,
.blue-border-btn:hover {
    background-color: #213f99;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.red-btn,
.red-border-btn:hover {
    background-color: #ff5d5d;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.green-btn,
.green-border-btn:hover {
    background-color: #13833b;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.orange-btn,
.orange-border-btn:hover {
    background-color: #f29600;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.darkg-btn,
.darkg-border-btn:hover {
    background-color: #434343;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.gray-btn,
.gray-border-btn:hover {
    background-color: #eee;
    color: #333;
    transition: all 0.3s ease-in-out;
}


.blue-border-btn {
    border: 1px solid #213f99;
    color: #213f99;
    background-color: #fff;
}

.red-border-btn {
    border: 1px solid #ff5d5d;
    color: #ff5d5d;
    background-color: #fff;
}

.green-border-btn {
    border: 1px solid #13833b;
    color: #13833b;
    background-color: #fff;
}

.orange-border-btn {
    border: 1px solid #f29600;
    color: #f29600;
    background-color: #fff;
}

.darkg-border-btn {
    border: 1px solid #434343;
    color: #434343;
    background-color: #fff;
}

.gray-border-btn {
    border: 1px solid #aaa;
    color: #aaa;
    background-color: #fff;
}



/* box 공통 */
.container {
    width: 100%;
    height: 100%;
    padding: 50px;
}

.left-content,
.right-content {
    height: 100%;
}

.vertical {
    display: flex;
    width: 100%;
}

.top-content,
.bottom-content,
.left-content,
.right-content,
.content {
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 10px;
}

.right-content {
    margin-left: 30px;
}

.horizontal .top-content {
    margin-bottom: 30px;
}

/* title 공통 */
.main-title {
    font-size: 2rem;
    font-weight: bold;
}

.box-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 30px;
}

/* 테이블 기본 css로 테이블 템블릿에서 html만 복사해서 넣으면 자동으로 css 적용됨 */
.list-table {
    border-bottom: 1px solid #aaa;
}

.list-table th,
.list-table td {
    text-align: center;
    border-top: 1px solid #aaa;
}

.list-table thead tr {
    background-color: #dbe3fb;
    color: #213f99;
}

.list-table tbody tr:nth-child(even) {
    background-color: #f4f6ff;
}

.form-table {
    border-bottom: 1px solid #aaa;
}

.form-table th {
    background-color: #dbe3fb;
    color: #213f99;
    text-align: center;
    border-top: 1px solid #fff;
}

.form-table td {
    border-top: 1px solid #aaa;
}



/* 기타 공통 */
.coupler {
    font-size: 1.3rem;
    margin-left: 5px;
}