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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f5f5f7;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background-color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.timer {
    text-align: center;
}

.time-display {
    font-size: 3.5rem;
    font-weight: 300;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    font-variant-numeric: tabular-nums;
}

.controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 25px;
    background-color: #0071e3;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn:hover {
    background-color: #0077ED;
    transform: scale(1.05);
}

.btn:active {
    transform: scale(0.95);
}

.btn.pause {
    background-color: #ff3b30;
} 