body {
    padding: 0;
    margin: 0;
    /* font: 14px "Lucida Grande", Helvetica, Arial, sans-serif; */
    font-family: 'Segoe UI', sans-serif;
    width: 100%;
    height: 100%;
    position: relative;
  }
  
a {
    color: inherit;
    text-decoration: none;
}

.bolder {
  font-weight: 600;
}

.container {
    padding-top: 11vh;
}

.container > .sub_title{
    width: 100%;
    background-image: url("/images/background/sub_back.png");
    background-size: cover;
    background-position: center;
    height: 15vh;
    display: grid;
    align-items: center;
    justify-content: center;
    color: #333333;
}

.container > .main_contents{
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    min-height: 60vh;
    padding: 2rem 0 2rem 0; 
}

.note_header {
    display: grid;
    background-color: #666;
    color: white;
    grid-template-columns: 10% 60% 15% 15%;
    padding: 0.5rem 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 400;
}

.note_body {
    color: #333;
    padding: 0.5rem 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 200;
    min-height: 30vh;
    border-bottom: 2px solid #666;
    /* margin-top: 1rem; */
}

.note_line {
    display: grid;
    grid-template-columns: 10% 60% 15% 15%;
}

.note_header div {
    justify-self: center;
}

#editor {
    min-height: 60vh;
}

.edit_form {
    display: grid;
    grid-template-columns: 1fr;
}

.edit_title {
    width: auto;
    height: 2rem;
    font-size: 1.2rem;
}

.edit_btn{
    height: 3rem;
    font-size: 1.2rem;
    margin-top: 2rem;
    width: 10rem;
    justify-self: center;
    border-radius: 1.5rem;
    background-color: transparent;
    border: 1px solid #ff960d;
    transition: all 0.5s;
}

.edit_btn:hover {
    background-color: #ff960d;
    cursor: pointer;
    color: white;
}

.note_cell {
    justify-self: center;
}

.note_line {
    border-bottom: 1px solid #666;
    padding: 0.5rem;
}

.note_line div{
    font-size: 1.2rem;
}

.note_body > :first-child{
    border-top: 1px solid #666;
}

.note_body > :nth-child(even){
    background-color: #EEE;
}

.btn_group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 1rem 0;
}

.btn_group button {
    justify-self: right;
    height: 3rem;
    font-size: 1.2rem;
    width: 10rem;
    border-radius: 1.5rem;
    background-color: transparent;
    border: 1px solid #ff960d;
    transition: all 0.5s;
}

.btn_group button:hover{
    background-color: #ff960d;
    cursor: pointer;
    color: white;
}

.pagenation {
    justify-self: center;
    display: flex;
}

.pagenation a {
    align-self: center;
    border: 1px solid #666;
    width: 2rem;
    height: 2rem;
    display: grid;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 500;
}

.active {
    background-color: #333;
    color: white;
    font-weight: 500;
}

.user_note_title {
    border-bottom: 10px solid #666;
    font-size: 2rem;
    padding-left: 1rem;
}

.user_note_content {
    border: 1px solid #e6e6e6;
    padding: 2rem;
}

.service_board {
    max-width: 1000px;
    margin: 0 auto;
}

.service_title{
    border-bottom: 1px solid #F0F0F0;
    padding: 0 0 1rem 0;
}

.service_title p, h1{
    margin: 1rem 0 0 0;
}

.service_form {
    display: grid;
    gap: 1rem;
}

.service_form > :first-child{
    margin-top: 1rem;
}

.service_low {
    display: grid;
    grid-template-columns: 20% max-content;
    border-bottom: 1px solid #F0F0F0;
    padding: 0 0 1rem 0;
    align-items: center;
}

.service_low select{
    width: 10rem;
    font-weight: 300;
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding: 0.5rem 0;
}

.service_low select option{
    border: none;
}

.service_low input{
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding: 0.5rem 0.5rem;
}

.titleinput{
    width: 48rem;
}

.textarea{
    border: none;
    width: 48rem;
    min-height: 10rem;
    padding: 0.5rem 0.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.submit_btn {
    width: 10rem;
    height: 3rem;
    justify-self: center;
    border-radius: 1.5rem;
    border: 1px solid #ff960d;
    background-color: transparent;
    font-size: 1.2rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    transition: all 0.5s;
}

.submit_btn:hover{
    cursor: pointer;
    background-color: #ff960d;
    color: #FFF;
}
@media(max-width:768px) {
    .service_board{
        width: 90vw;
        padding: 0 5vw;
    }
    .service_form{
        width: 100%;
    }
    .service_low{
        width: 90vw;
    }
    .titleinput{
        width: auto;
    }
    .textarea{
        width: 60vw;
    }
}