* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    color: #333;
    line-height: 1.6
}

.header {
    background-color: #fff;
    border-bottom: 1px solid #ddd
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 1px solid #eee
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    letter-spacing: 2px
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 10px
}

.header-nav a {
    color: #333;
    text-decoration: none;
    font-size: 14px
}

.header-nav a:hover {
    color: #3667ca;
}

.header-nav span {
    color: #999
}

.banner {
    height: 200px;
    background: linear-gradient(135deg, #87ceeb, #b0e0e6, #e0f6ff);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.banner:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 200"><path d="M0,100 Q200,50 400,100 T800,100 L800,200 L0,200 Z" fill="rgba(255,255,255,0.3)"/></svg>') no-repeat;
    background-size: cover;
    opacity: .5
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    padding: 0 30px
}

.banner-text {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .2)
}

.banner-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px
}

.banner-subtitle {
    font-size: 20px
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #fff;
    border-bottom: 1px solid #ddd
}

.menu-btn {
    padding: 8px 20px;
    background-color: #3667ca;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px
}

.menu-btn:hover {
    background-color: #0052a3
}

.current-location {
    font-size: 14px;
    color: #666
}

.search-section {
    padding: 20px 30px;
    background-color: #fff;
    margin: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px #0000001a
}

.search-container {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 4px
}

.search-buttons {
    display: flex;
    justify-content: end;
    gap: 10px;
    margin-bottom: 20px
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all .3s
}

.btn.btn-search {
    background-color: #3667ca;
    color: #fff
}

.btn.btn-search:hover {
    background-color: #0052a3
}

.btn.btn-register,
.btn.btn-report {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd
}

.btn.btn-register:hover,
.btn.btn-report:hover {
    background-color: #f5f5f5
}

.search-conditions {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.search-conditions-left {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.search-conditions-right {
    display: flex;
    justify-content: end;
    gap: 10px
}

.search-button {
    padding: 10px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all .3s;
    background-color: #3667ca;
    color: #fff;
}

.search-button:hover {
    background-color: #16397e
}

.condition-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px
}

.condition-item {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.condition-item label {
    font-size: 13px;
    color: #666;
    font-weight: 500
}

.input-field,
.select-field {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%
}

.input-field:focus,
.select-field:focus {
    outline: none;
    border-color: #3667ca
}

.select-field {
    background-color: #fff;
    cursor: pointer
}

.main-content {
    margin: 20px 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px #0000001a;
    padding: 20px
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-bottom: 20px
}

.data-table a {
    color: #16397e;
}

.data-table a:visited {
    color: #16397e;
}

.data-table thead {
    /* background: linear-gradient(to bottom, #e3f2fd, #bbdefb) */
}

.data-table thead th {
    padding: 12px 8px;
    text-align: center;
    font-weight: 600;
    color: #333;
    border: 1px solid #90CAF9;
    border-top: 3px solid #90CAF9;
    white-space: nowrap
}

.data-table tbody tr {
    border-bottom: 1px solid #e0e0e0
}

.data-table tbody tr:hover {
    background-color: #f5f5f5
}

.data-table tbody tr:nth-child(2n) {
    background-color: #fafafa
}

.data-table tbody tr:nth-child(2n):hover {
    background-color: #f0f0f0
}

.data-table tbody td {
    padding: 10px 8px;
    text-align: center;
    border: 1px solid #e0e0e0;
    vertical-align: middle
}

.data-table tbody td:nth-child(9) {
    text-align: left;
    padding-left: 12px
}

.data-table tbody input[type=radio] {
    cursor: pointer
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px
}

.page-btn {
    padding: 6px 12px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    color: #333
}

.page-btn:hover {
    background-color: #f5f5f5
}

.page-btn.disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    color: #999;
}

.page-numbers {
    display: flex;
    gap: 5px;
    margin: 0 10px
}

.page-number {
    padding: 6px 12px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    min-width: 35px;
    text-align: center;
    display: inline-block
}

.page-number:hover {
    background-color: #f5f5f5
}

.page-number.active {
    background-color: #3667ca;
    color: #fff;
    border-color: #3667ca;
    font-weight: 700
}

.page-number.active:hover {
    background-color: #16397e;
    transition: all .3s;
}

.total-count {
    text-align: right;
    font-size: 14px;
    color: #666;
    font-weight: 500
}

/* 선택된 행을 확실하게 나타내는 디자인 설정 */
.selected-row,
.selected-row td {
    background-color: #e6f7ff !important;
}