

main {
    width: calc(100% - 200px);
    margin: 60px 40px 0 40px;
}

.wrap {
    display: flex;
}

/* main_top */
.main_top {
    display: flex;
    justify-content: space-between;
}

.main_text {
    font-size: 25px;
    font-family: "NotoSansKR-Bold";
}

/* main_nav */
.main_nav {
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav_button {
    display: flex;
}

.register {
    width: 110px;
    height: 45px;
    font-family: 'NotoSansKR-Bold';
    font-size: 15px;
    color: #FFF;
    background-color: #FF3478;
    border: none;
    border-radius: 5px
}

.register:hover {
    background-color: #e02d69;
}

.delete {
    width: 110px;
    height: 45px;
    font-family: 'NotoSansKR-Bold';
    font-size: 15px;
    color: #FFF;
    background-color: #0088ff;
    border: none;
    margin: 0 10px 0 10px;
    border-radius: 5px
}

.delete:hover {
    background-color: #0072d5;
}

/* swal */
.swal2-title {
    font-family: 'NotoSansKR-Bold';
}

.swal2-html-container {
    font-family: 'NotoSansKR-Medium';
}

.swal2-styled.swal2-confirm {
    font-family: 'NotoSansKR-Medium';
}

.swal2-styled.swal2-cancel {
    font-family: 'NotoSansKR-Medium';
    background-color: #232323;
}

/* searchbar */
.searchbar {
    width: 220px;
    height: 40px;
    display: flex;
    align-items: center;
    border: 1px solid #232323;
    border-radius: 5px;
}

.searchbar input {
    width: 180px;
    height: 30px;
    border: none;
    outline: none;
    text-align: center;
    margin-left: 3px;
    font-size: 12px;
    font-family: 'NotoSansKR-Medium';
}

.search_button {
    width: 25px;
    height: 25px;
    border: none;
    background-color: #fff;
    margin-top: 3px;
}

/* main_list */
.main_list {
    height: 80%;
    max-height: 75vh;
    margin-top: 15px;
    background-color: #FAFAFA;
    border: 1px solid #DBDBDB;
    border-radius: 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
}

.list_top {
    width: 95%;
    margin-top: 15px;
}

.list_wrap {
    height: 45px;
    display: flex;
    align-items: center;
    background-color: #FFF;
    border: 1px solid #DBDBDB;
    border-radius: 7px;
}

.list_input {
    width: 20px;
    height: 20px;
    margin-left: 15px;
}

.list_top_name {
    width: 98%;
    height: 20px;
    padding-top: 3px;
    font-size: 15px;
    display: flex;
    justify-content: space-around;
    font-family: 'NotoSansKR-Medium';
    margin-left: 40px;
}

.list_top_name span {
    width: 20%;
    text-align: center;
}