    body, html {
            margin: 0;
            padding: 0;
            font-family: 'Arial', sans-serif;
            background-color: #f4f4f4;
        }


.content-area {
    background-color: #fff;
    padding: 60px 16rem 20px 16rem;
    margin-left: 150px;
    flex-grow: 1;
    overflow: auto;
    font-size: 15px;
    border-radius: 16px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.required::after {
  content: " *";
  color: red;
}

.form-check {
  display: flex;
  align-items: center;
}

.form-check-input {
  margin-right: 10px;
}
.custom-checkbox-group label {
    display: block;
    margin-bottom: 10px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.custom-checkbox input[type="checkbox"] {
    margin-right: 8px;
}

.custom-checkbox label {
    margin: 0;
}
/* 容器用於使按鈕靠右 */
.pdf-button-container {
    text-align: right;
    margin-bottom: 20px; /* 或者您需要的其他間距 */
}
#goBackButton {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

#goBackButton svg {
  margin-right: 8px;
  vertical-align: middle;
}

#goBackButton:hover {
  background-color: #0056b3;
}
/* 自定義的PDF按鈕樣式 */
.custom-pdf-button {
    background-color: #007bff; /* 按鈕背景顏色 */
    color: white; /* 按鈕文字顏色 */
    padding: 10px 20px; /* 按鈕內間距 */
    border-radius: 5px; /* 圓角 */
    font-size: 16px; /* 文字大小 */
}

 /* 表單樣式 */
        form {
            display: flex;
            flex-direction: column;
        }

        label {
            font-weight: bold;
            margin-top: 1rem;
        }


.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-form {
    margin-left: auto;
}

.search-input,
.search-button,
.per-page {
    font-size: 14px;
    padding: 5px;
}

.search-input {
    width: 200px;
}

input[type="text"], select, textarea {
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"] {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

.progress {
  height: 50px !important;
  background-color: #ccc;
  border-radius: 25px !important;
  overflow: hidden;
}

.progress-bar {
  background-color: #007BFF;
  height: 100%;
  border-radius: 22px;
  position: relative;
  border: 3px solid white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#progress-text {
  position: absolute;
  width: 100%;
  text-align: center;
  color: white;
}
.arrow {
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 30px solid #007BFF;
  position: absolute;
  top: 0;
  right: -30px;
  border-right: 1px solid black; /* 新增黑色邊框 */
  box-shadow: 2px 2px 5px rgba(0,0,0,0.5);  /* 新增陰影 */
}
/* 表格基本樣式 */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 25px 0;
    font-size: 18px;
    text-align: center;  /* 內容和標題都置中 */
    border-radius: 12px;  /* 外框圓弧 */
    overflow: hidden;     /* 隱藏內部超出的邊角 */
}

/* 表頭 */
th {
    background-color: #007bff;
    color: white;
    padding: 10px;
    text-align: center;  /* 標顆置中 */
}

/* 表格單元格 */
td {
    border: 1px solid #dddddd;
    padding: 8px;
    text-align: center;  /* 內容置中 */
}

/* 每一行的交替背景 */
tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:nth-child(odd) {
    background-color: #ffffff;
}

