html {
    font-size: 16px;
}

body {
    /* background-image: url('../img/thanksgiving_1.png'); */
    /* background-color: #000000; */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
    /* background-position: center; */
    /* font-family: 'Comic Sans MS', sans-serif; */
    color: #2C2C2C;
    /* text-align: center; */
    min-height: 100%;
}

table,
th,
td {
    /* border: 1px solid black; */
    border-collapse: collapse;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

th,
td {
    padding: 8px;
    text-align: left;
}

th {
    font-weight: bold;
    background-color: #efeaf6;
}

.block-auto {
    display: flex;
    justify-content: flex-end;
    color: rgba(169,204,227, 0.5);
    font-size: 24px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* 添加灰色陰影 */
}

.wood-background {
    background-image: url('../img/wood.jpg');
    background-size: cover;
    /* 或 contain, repeat, no-repeat */
    background-repeat: repeat;
    /* 若要重複紋路 */
}

.mb-3 {
    margin-bottom: 6px;
}

/* .form-select {
    font-size: 1.2rem;
    padding: 1rem 0.75rem;
  } */

.main-block {
    background-color: #e0d17b;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.h1-manage {
    font-size: 2.5rem;
    font-weight: bold;
}

.btn-block {
    margin-bottom: 10px;
}

.text-muted {
    color: #999;
    /* 修改文字顏色 */
}

.ps-3 {
    padding-left: 3rem;
    /* 修改內邊距 */
}

.me-3 {
    margin-right: 3rem;
    /* 修改為 1rem 的右邊距 */
}

.border {
    border-radius: 0.8em;
    padding: 0.6em;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.dev-status {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #ccc;
    /* 灰色邊框 */
    /* margin-right: 1dvh; */
    margin-bottom: -2px;
}

.dev-True {
    background-color: rgb(150, 250, 100);
    /* 綠色填滿 */
    border-color: rgb(150, 250, 100);
}