header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    margin: 15px 15px;
}

header p {
    font-family: 微軟正黑體;
    font-size: 40px;
    font-weight: bold;
    color: #6a6a6a;
}

.input-bar {
    border: none;
    border-bottom: 2px solid #9b9b9b;
    outline: none;
    width: 260px;
    height: 42px;
    resize: none;
    margin-left: 5px;
    text-overflow: ellipsis;
    padding: 10px;
}

.minutes-container {
    background-color: #ffffff;
    margin: 5px 15px;
    border-radius: 10px;
    padding: 5px;
    overflow-x: auto;
    /*https://www.w3schools.com/howto/howto_css_table_responsive.asp*/
}

table {
    margin: 40px;
    border-collapse: collapse;
    table-layout: auto;
    width: 95%;
}

thead {
    border-bottom: 1px solid #333;
}

th {
    text-align: center;
    padding: 9px;
    margin: 40px;
    font-size: 30px;
    color: #6a6a6a;
    min-width: 120px;
}

td,
.minutes-text {
    border: none;
    text-align: center;
    font-size: 24px;
    color: #6a6a6a;
    padding: 20px;
    margin: 6px;
    min-width: 120px;
    max-width: 600px;
}
em {
    color: #24a0ed;
    font-size: 16px;
}

.tdpublic {
    border: 1;
}

.minutes-index {
    font-size: 30px;
}

.minutes-publictitle {
    font-size: 14px;
    text-align: left;
}

.search-result {
    font-size: 88%;
    color: #333;
    padding: 10px 20%;
    text-align: left;
    letter-spacing: 1px;
    line-height: 1.5;
}

.minutes-title {
    padding-top: 40px;
}
.minutes-title:hover {
    color: #333;
    cursor: pointer;
}

.mark-keyword {
    background-color: #6a6a6ada;
    color: #ffffff;
    font-weight: normal;
}

.minutes-btns {
    padding-right: 0;
    max-width: 250px;
}

.records-pageSelect {
    display: flex;
    justify-content: flex-end;
    margin-right: 40px;
}

.btn.pre {
    outline: none;
    border: none;
    width: 100px;
    height: 80px;
    font-size: 60px;
    text-align: center;
    padding: 10px;
    margin-bottom: 30px;
}

.btn.pre:hover {
    border: none;
    background-color: #fff;
    color: #6a6a6a;
}

.btn.pages {
    padding: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.errorMessages {
    padding: 20px;
    background-color: #d42519;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 10px;
    border-top: 1px solid #333;
    width: 100%;
    text-align: center;
}

.pagination ul {
    display: flex;
    justify-content: center;
    padding: 8px;
    border-radius: 15px;
}

.pagination ul li {
    list-style: none;
    line-height: 45px;
    text-align: center;
    font-size: 15px;
    color: #6a6a6a;
    cursor: pointer;
    transition: all 0.5s ease;
    user-select: none;
}

.pagination ul li.line {
    margin: 13px 5px;
}

.pagination ul li.num {
    height: 45px;
    width: 45px;
    margin: 13px 5px;
    border-radius: 5%;
}

.pagination ul li.prev,
.pagination ul li.next {
    padding: 15px 20px;
    border-radius: 5%;
}

.pagination ul li.active,
.pagination ul li.num:hover,
.pagination ul li.prev:hover,
.pagination ul li.next:hover {
    color: #fff;
    background-color: #888888;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    border-radius: 34px;
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #9b9b9b;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    border-radius: 50%;
    position: absolute;
    content: '';
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #6a6a6a;
}

input:focus + .slider {
    box-shadow: 0 0 1px;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

i[id^='minute'],
i[id='searchBtn'],
i[id^='user-modify'],
i[id^='user-delete'] {
    color: #6a6a6a;
    padding: 10px;
    font-size: 35px;
    cursor: pointer;
    transition: 0.5s;
}

i[id^='minute']:hover,
i[id='searchBtn']:hover,
i[id^='user-modify']:hover,
i[id^='user-delete']:hover {
    background-color: #9b9b9b;
    border-radius: 10px;
    color: #ffffff;
}

.select-download {
    width: 180px;
    border-radius: 10px;
    margin: 10px;
}

progress {
    height: 10px;
    width: 70%;
}
