.wellness-timer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px auto;
    padding: 20px;
    width: fit-content;
}

.timer-main-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px; 
}

.arrow-controls {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 120px; 
}

.nav-arrow {
    display: block;
    color: #18453b;
    font-size: 50px;
    cursor: pointer;
    user-select: none;
    transition: transform 0.1s;
    line-height: 1;
}

.nav-arrow:hover {
    transform: scale(1.1);
}

.clock-box {
    transform: scale(1.2); 
    transform-origin: center center;
    margin: 40px 0; 
}

.flip-clock-wrapper ul li a div div.inn {
    background-color: #18453b !important;
    color: #ffffff !important;
    text-shadow: none !important;
}

.flip-clock-label {
    display: none !important;
}

/* --- Single Button Full-Width Align --- */
.timer-actions {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    /* This padding skips the arrows so the button starts under the '2' */
    padding-left: 90px; 
    margin-top: -25px;
}

.wellness-btn {
    background: #18453b;
    color: white;
    border: none;
    /* We use a fixed width or flex-grow to match the visual width of the clock */
    width: 350px; 
    padding: 16px 0; /* Vertical padding for height */
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 6px 0 #0f2d26;
    transition: all 0.1s;
    text-align: center;
}

.wellness-btn:active {
    transform: translateY(3px);
    box-shadow: 0 2px 0 #0f2d26;
}