/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #ffe6e1; /* Nhẹ nhàng, làm nền cho chủ đề */
}

.timer-container {
    text-align: center;
    background-color: #fff5f3; /* Màu trắng hồng nhạt, hài hòa với Tomato */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 350px;
}

h1 {
    color: #e74c3c; /* Đỏ cà chua đậm */
    font-size: 1.8em;
    margin-bottom: 20px;
}

.timer {
    font-size: 3em;
    font-weight: bold;
    color: #d63031; /* Đậm hơn Tomato */
    margin-bottom: 20px;
}

.controls {
    margin: 15px 0;
}

button {
    background-color: #e74c3c; /* Màu Tomato */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin: 5px;
}

button:hover {
    background-color: #c0392b; /* Đậm hơn Tomato khi hover */
    transform: scale(1.05); /* Hiệu ứng nhỏ khi di chuột */
}

#start {
    background-color: #27ae60; /* Màu xanh lá cho nút "Bắt Đầu" */
}

#start:hover {
    background-color: #229954;
}

#reset {
    background-color: #e74c3c; /* Đồng nhất với màu Tomato */
}

.session-info {
    margin-top: 10px;
    color: #666;
    font-size: 1em;
}

input[type="number"] {
    width: 60px;
    padding: 5px;
    margin: 5px;
    border: 2px solid #e74c3c; /* Viền Tomato */
    border-radius: 10px;
    text-align: center;
    font-size: 1em;
    color: #d63031; /* Đồng nhất với các phần khác */
}

input[type="number"]:focus {
    outline: none;
    border-color: #c0392b; /* Đậm hơn khi focus */
}

label {
    font-size: 1em;
    color: #d63031; /* Màu chữ tương đồng Tomato */
}

button#setTime {
    background-color: #ff6347; /* Tomato tiêu chuẩn */
    margin-top: 20px;
}

button#setTime:hover {
    background-color: #e74c3c; /* Đậm hơn khi hover */
}

p {
    font-size: 1em;
    color: #333;
}

#pomodoroCount {
    color: #e74c3c; /* Nổi bật số đếm */
}

h1 {
    color: #d63031; /* Nổi bật số đếm */
}

body {
    background-color: #d63031;
}
