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

.container {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 400px;
}

h1 {
    color: #007bff;
    margin-bottom: 20px;
}

#timer-display {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #28a745;
}

.buttons button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.buttons button:hover {
    background-color: #0056b3;
}

#pause-button {
    background-color: #ffc107;
}
#pause-button:hover {
    background-color: #e0a800;
}

#reset-button {
    background-color: #dc3545;
}
#reset-button:hover {
    background-color: #c82333;
}

.controls {
    margin-top: 20px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.controls label {
    margin-top: 10px;
    font-size: 0.9rem;
}

.controls input[type="number"] {
    width: 60px;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    text-align: center;
    font-size: 1rem;
}

#status-message {
    margin-top: 20px;
    font-style: italic;
    color: #6c757d;
}

.timer-wrapper {
    position: relative; /* For positioning timer-display on top of SVG */
    width: 200px; /* Same as SVG width */
    height: 200px; /* Same as SVG height */
    margin: 0 auto 20px; /* Center the wrapper and add some bottom margin */
}

#timer-display { /* Adjusted to be positioned over the SVG */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem; /* Slightly smaller to fit well within the circle */
    font-weight: bold;
    color: #28a745;
    /* Remove margin-bottom as it's now on timer-wrapper */
}

.progress-ring {
    transform: rotate(-90deg); /* Start the progress from the top */
}

.progress-ring__background {
    fill: transparent;
    stroke: #e6e6e6; /* Light grey for the background track */
    stroke-width: 10;
}

.progress-ring__circle {
    fill: transparent;
    stroke: #28a745; /* Green for the progress, same as timer text */
    stroke-width: 10;
    stroke-linecap: round; /* Makes the line ends rounded */
    transition: stroke-dashoffset 0.35s; /* Smooth transition for the progress */
    /* stroke-dasharray and stroke-dashoffset will be set by JavaScript */
}

.status-container {
    display: flex;
    align-items: center; /* Vertically align items in the middle */
    justify-content: flex-end; /* Horizontally align items to the end (right) */
    margin-top: 20px; /* Add some space above */
}

#status-message {
    margin-right: 10px; /* Add some space between message and logo */
}

#expo-logo {
    width: 80px; /* Adjust width as needed, e.g., smaller for inline display */
    height: auto; /* Maintain aspect ratio */
    opacity: 0.9; /* Optional: adjust opacity */
}
