:root {
    --sky: #a8d8ea;
    --beige: #f5efe6;
    --accent: #6fa3b1;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background: linear-gradient(135deg, var(--sky), var(--beige));
}

/* NAVBAR FIX */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 20px;
    box-sizing: border-box;

    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);

    z-index: 100;
}

/* LEFT SIDE */
.left {
    display: flex;
    flex-direction: column;
}

.title {
    font-family: "DM Serif Display", serif;
    font-size: 18px;
}

.sub {
    font-size: 11px;
    color: #666;
}

/* RIGHT SIDE FIX */
.right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* BUTTON FIX (THIS FIXES YOUR ISSUE) */
.right button {
    height: 30px;
    padding: 0 10px;
    border: none;
    background: rgb(0, 0, 0);
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    white-space: nowrap;
}

/* CLOCK FIX */
#clock {
    font-size: 12px;
    background: #eee;
    padding: 5px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

/* LAYOUT */
.container {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    padding: 50px;
}

/* SECTIONS */
.section {
    display: none;
    width: 100%;
    max-width: 520px;
}

.section.active {
    display: block;
}

/* CARD */
.card {
    background: rgba(255,255,255,0.85);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
}

/* PROGRESS */
.bar {
    height: 6px;
    background: #ddd;
    border-radius: 10px;
    margin: 15px 0;
}

#fill {
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: 0.3s;
}

/* HABITS */
label {
    display: block;
    margin: 10px 0;
    text-align: left;
}

/* BUTTON */
button {
    margin-top: 15px;
    padding: 10px;
    border: none;
    background: var(--accent);
    color: white;
    border-radius: 8px;
    cursor: pointer;
}
footer {
    text-align: center;
    padding: 20px;
    background-color: aqua;
    font-size: 0.8rem;
    color: #000000;
}