* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.timer-container {
    margin-bottom: 2rem;
}

#timer-display {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2980b9;
}

.status {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.controls {
    margin-bottom: 2rem;
}

button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 0.5rem;
    transition: background-color 0.3s;
}

#start-btn {
    background-color: #2ecc71;
    color: white;
}

#pause-btn {
    background-color: #e74c3c;
    color: white;
}

#reset-btn {
    background-color: #3498db;
    color: white;
}

button:hover {
    opacity: 0.9;
}

.settings {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.setting-item {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

input[type="number"] {
    width: 60px;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-align: center;
}
