/* keeping it minimal and brutalist */
:root {
    --bg-dark: #121212;
    --text-main: #e0e0e0;
    --text-muted: #757575;
    --accent: #ffffff;
    --font-mono: 'Courier New', Courier, monospace;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-mono);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

/* inputs and buttons */
input[type="text"] {
    width: 80%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-main);
    font-family: inherit;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 20px;
    outline: none;
}

input[type="text"]:focus {
    border-color: var(--accent);
}

button {
    background: var(--text-main);
    color: var(--bg-dark);
    border: none;
    padding: 12px 30px;
    font-family: inherit;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s;
    margin: 5px;
}

button:hover {
    opacity: 0.8;
}

/* timer stuff */
#timer-display {
    font-size: 5rem;
    margin: 30px 0;
    font-weight: normal;
    letter-spacing: -2px;
}

#current-task {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#current-task span {
    color: var(--text-main);
    font-weight: bold;
}

.stats {
    margin-bottom: 20px;
    color: var(--text-muted);
}

#status-message {
    color: #ff5252; /* subtle red just for warnings */
    margin-bottom: 15px;
}

/* utility */
.hidden {
    display: none !important;
}