/* Session circles styles */
.sessions {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 18px;
}
.session-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, background 0.2s;
}
session-circle:hover {
    box-shadow: 0 0 0 4px #c7ddb5;
    background: #e7f3d9;
}
body {
    background: #c7ddb5;
    font-family: Georgia, serif;
    text-transform: lowercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background: rgba(255,255,255,0.85);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    max-width: 350px;
}

h1 {
    font-size: 2.2rem;
    color: #718355;
    margin-bottom: 16px;
    font-weight: 700;
    text-transform: lowercase;
}

.timer {
    font-size: 3rem;
    color: #718355;
    margin: 24px 0;
    letter-spacing: 2px;
    text-transform: lowercase;
    font-weight: bold;
}
button {
    background: linear-gradient(90deg, #87986a 0%, #97a97c 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    margin: 8px;
    transition: background 0.2s;
    font-family: Georgia, serif;
    text-transform: lowercase;
}

button:hover {
    background: linear-gradient(90deg, #415d43 0%, #709775 100%);
}

.label {
    font-size: 1.1rem;
    color: #718355;
    margin-bottom: 8px;
    text-transform: lowercase;
}

/* Padding for pomodoro sessions completed label */
.pomodoro-label {
    padding: 8px 0;
}
