body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0;
  margin: 0;
  background-color: #f6f8fa;
  /* background-color: #8fd3f4; */
}


/* :root {
  --el-color-primary: green;
}
*/

.el-loading-mask .el-loading-text {
  font-size: 24px !important; /* 調整字體大小 */
}
.el-header {
  background-color: #f6f8fa;
  height: 50px;
}

/* 患者資訊欄*/

.customer-Zone {
    width: 300px;
    height: 100vh;

    .el-button+.el-button {
        margin-left: 4px;
    }
}

#menu {
  margin-left: -20px;
  padding: 20px;
  padding-top: 0;
  /* background-color: white; */
  background-color: #f6f8fa;

  button {
    width: 100%;
    margin-bottom: 20px;
  }
}
.mt-1{
  margin-top: 1rem;
}
.ml-1{
  margin-left: 1rem;
}
.mr-1{
  margin-right: 1rem;
}
.mb-1{
  margin-bottom: 1rem;
}

.medical-button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px;
  * {
    flex-basis: 19%;
  }
}
.dialog-header {
    h2 {
        margin: 0;
    }

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
}

.dialog-tabs {
    margin-top: 20px;
    height: 160px;
}

.errorBtn {
    button {
        margin: 5px 0 !important;
        display: block;
    }
}



.flex {
  display: flex;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.jcs {
  justify-content: start;
}
.jcc {
  justify-content: center;
}
.jcsb {
  justify-content: space-between;
}
.jce {
  justify-content: end;
}
.ais {
  align-items: start;
}
.aic {
  align-items: center;
}
.aie {
  align-items: end;
}
.aist {
  align-items: stretch;
}
