.home-button-container {
    text-align: center; /* 홈 버튼 중앙 정렬 */
    margin-bottom: 20px; /* 홈 버튼과 컨테이너 간의 여백 */
}

#homeButton {
    background-color: #000000; /* Black */
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

#homeButton:hover {
    background-color: #45a049; /* Darker green on hover */
    transform: scale(1.05); /* Slightly enlarge the button */
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f4f8;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.timer {
    margin: 20px 0;
}

#time {
    font-size: 48px;
    color: #ff3e3e; /* Timer color */
    margin: 20px auto; /* 위아래 여백, 좌우는 자동으로 설정하여 중앙 정렬 */
    padding: 20px;
    border-radius: 50%; /* Keep this for a circular shape */
    background-color: #ffe6e6; /* Light background for timer */
    width: 100px; /* Width should be the same as height */
    height: 100px; /* Height should be the same as width */
    display: flex; /* Flexbox to center content */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    text-align: center; /* Text centered */
}

.buttons {
    display: flex;
    justify-content: center;
}

button {
    margin: 0 5px;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button#start {
    background-color: #4CAF50; /* Green */
    color: white;
}

button#pause {
    background-color: #FFC107; /* Yellow */
    color: white;
}

button#reset {
    background-color: #F44336; /* Red */
    color: white;
}

.task-input {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

#new-task {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
}

#add-task {
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #007BFF; /* Blue */
    color: white;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}


footer {
    background-color: #f8f9fa; /* 배경 색상 */
    text-align: center; /* 중앙 정렬 */
    padding: 20px 0; /* 패딩 추가 */
    position: relative; /* 하단 고정시킴 */
    bottom: 0;
    width: 100%;
    margin-top: 20px; /* 상단 여백 추가 */
}

.footer-menu {
    margin: 10px 0; /* 상하 여백 */
}

.footer-menu a {
    margin: 0 15px; /* 링크 간 여백 */
    text-decoration: none; /* 밑줄 제거 */
    color: #007bff; /* 링크 색상 */
}

.footer-menu a:hover {
    text-decoration: underline; /* 호버 시 밑줄 */
}

/* 추가된 스타일 */
#open_preferences_center {
    display: block; /* 블록으로 설정하여 중앙 정렬 가능 */
    margin: 10px auto; /* 위 아래 여백 추가 및 자동 좌우 여백으로 중앙 정렬 */
    text-decoration: none; /* 밑줄 제거 */
    color: #007bff; /* 링크 색상 */
}

#open_preferences_center:hover {
    text-decoration: underline; /* 마우스 오버 시 밑줄 */
}