* {
    border-radius: 4px;
}

body {
    text-align: left;
    margin: 0;
    padding: 0;
}

textarea {
    width: 100%;
    height: 100%;
    font-size: 18px;
    border: none;
    resize: none;
    box-sizing: border-box;
}

span {
    text-align: center;
}

.profile {
    display: flex;
    text-align: center;
    align-items: center;
    /* 垂直置中 */
    justify-content: center;
    /* 水平置中 */
    gap: 10px;
    /* 元素之間的間距，可依需要調整 */
    margin: 5px;
}

#container {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 20px auto;
}

#container2,
#profileListContainer {
    justify-content: space-between;
    width: 80%;
    margin: 20px auto;
}

#leftBoxContainer,
#rightBoxContainer {
    width: 50%;
    /* 調整為50%，使左邊區塊和右邊區塊一樣大 */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 5px;
}

#leftBox,
#rightBoxCounter {
    width: 100%;
    height: 200px;
    font-size: 18px;
    font-weight: bold;
    overflow-y: auto;
    box-sizing: border-box;
}

#rightBoxTime {
    width: 100%;
    height: 48px;
    font-size: 24px;
    font-weight: bold;
    overflow-y: auto;
    box-sizing: border-box;
}

#rightBoxTop {
    width: 100%;
    height: 100px;
    font-size: 36px;
    font-weight: bold;
    overflow-y: auto;
    box-sizing: border-box;
}

#leftBox,
#rightBoxTop,
#rightBoxTime {
    display: flex;
    align-items: center;
    justify-content: center;
}

#buttonContainer,
#addButtonContainer {
    text-align: center;
    margin-top: 20px;
}