.belowNavbar {
    padding-top: 60px;
}

.hide {
    display: none;
}

.navbar-style {
    background-color: #1f2937;
    color: #ffffff;
}

.content-style {
    background-color: #ffffff;
    color: #292524;
}

.center {
    text-align: center;
}

.nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.nav-center {
    display: flex;
}

.next-button {
    background-color: #1f2937;
    border-color: #1f2937;
    color: #ffffff;
}

.btn-primary.next-button:hover,
.btn-primary.next-button:active,
.btn-primary.next-button:focus,
.btn-primary.next-button:focus-visible,
.btn-check:checked + .btn-primary.next-button {
  background-color: #000000;
  border-color: #000000;
  box-shadow: none;
}

.min-dvh-100 {
    min-height: 100dvh;
}

.base-timer {
    position: relative;
    height: 180px;
    width: 180px;
    margin-left: auto;
    margin-right: auto;

}

.base-timer_circle {
    fill: none;
    stroke: none;
}

.base-timer_path-elapsed {
    stroke-width: 7px;
    stroke: grey;
}

.base-timer_label {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 180px;
    height: 180px;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.base-timer_path-remaining {
    /* Just as thick as the original ring */
    stroke-width: 7px;

    /* Rounds the line endings to create a seamless circle */
    stroke-linecap: round;

    /* Makes sure the animation starts at the top of the circle */
    transform: rotate(90deg);
    transform-origin: center;

    /* One second aligns with the speed of the countdown timer */
    transition: 1s linear all;

    /* Allows the ring to change color when the color value updates */
    /*stroke: #41b883;*/
    stroke: #156082;
}

.base-timer_svg {
    /* Flips the svg and makes the animation to move left-to-right */
    transform: scaleX(-1);
}

.icon-btn {
    border: none;
    background: none;

}

.timer-buttons-container {
    display: flex;
    justify-content: center;
}

@media (min-width: 1200px) {
    .center {
        margin-left: auto;
        margin-right: 50%;
    }

    .base-timer {
        position: relative;
        height: 180px;
        width: 180px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
    }
}