/**
 * Copyright (C) GOYOURLIFE INC. - All Rights Reserved.
 * Unauthorized copying of this file, via any medium is strictly prohibited.
 * Proprietary and confidential.
 * Written by Doris Wang <doris.wang@goyourlife.com>, July 2020.
 * 
 * @author Doris Wang <doris.wang@goyourlife.com>
 * @link http://www.goyourlife.com
 * @copyright Copyright &copy; 2020 GOYOURLIFE INC.
 */

.tableContainer {
  padding-left: 25px;
  padding-right: 25px;
  background-color: white;
  padding-bottom: 40px;
}
/* 表格 */
.table {
  width: 99.8%;
  table-layout: fixed;
  border-spacing: 0px;
  border-collapse: collapse;
}
.table tbody {
  cursor: pointer;
  font-size: 14px;
}
.table td {
  height: 56px;
  text-align: center;
  /* border: 1px solid #EEE; */
}
.table thead tr th,
.table thead tr td {
  position: sticky;
  top: 0px;
  background-color: #3f4a68;
  text-decoration: none;
  /* font-family:'Noto Sans TC'; */
  font-weight: 100;
  font-family: 'Times New Roman';
  letter-spacing: 0.5;
  color: white;
}
.table tr:nth-child(even) {
  background-color: #eeeeee;
}
/* 個人化資料編輯button */
.startEditButton {
  background-color: #df2854;
  border-radius: 3px;
  border: 1px #df2854 solid;
  cursor: pointer;
  /* width: 121px; */
  height: 38px;
  color: white;
  outline: none;
  margin-bottom: 10px;

  padding: 6px 23px;
  background-size: 13px;
  background-position: 5px;
  background-repeat: no-repeat;
}

.addBtn {
  margin-right: 6px;
  background-color: #1db3aa;
  /* width: 70px; */
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 3px;
  border: 1px #1db3aa solid;
  cursor: pointer;
  height: 38px;
  outline: none;
  color: white;

  padding: 6px 23px;
  background-size: 13px;
  background-position: 5px;
  background-repeat: no-repeat;
}
.exportBtn {
  margin-right: 6px;
  /* background-color: #0091C3;  */
  /* width: 70px; */
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 3px;
  /* border: 1px #d2d4d4 solid; */
  cursor: pointer;
  height: 38px;
  outline: none;
  color: white;

  padding: 6px 23px;
  background-size: 13px;
  background-position: 5px;
  background-repeat: no-repeat;
}
