/*WHOLE DOC*/
:root {
    --color1: #353535;
    --color2: #bababa;
    --color3: #f3f3f3;
}

.content {
    display: none;
}

html {
    font-family: "Roboto", sans-serif;
    color: var(--color1);
}

/*HOMEPAGE*/
button {
    background-color: var(--color3);
    border-radius: 0.8rem;
    border-width: 0;
    box-shadow: var(--color1) 0.2em 0.3em 0.6em, var(--color2) -0.07em -0.2em 0 inset;
    color: var(--color1);
    cursor: pointer;
    font-family: "Webstorm mono",monospace;
    transition: box-shadow .15s,transform .15s;
}

button:hover {
    box-shadow: var(--color1) 0.2em 0.3em 0.35em, var(--color2) 0 -0.1em 0 inset;
    transform: translateY(0.15em);
}

#homeButtons {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 3.5rem;
}

.homeBtn {
    padding: 0.8em;
    font-size: clamp(1.2rem, 2rem, 1.9vw);
}

#themes {
    display: flex;
    position: fixed;
    gap: 1.5rem;
}

#pink {
    color: #ff079e;
    background-color: #fff4f8;
    box-shadow: #ff079e 0.07em 0.2em 0.3em, #ffb7d8 0 -0.07em 0 inset;
}

#pink:hover {
    box-shadow: #ff079e 0.07em 0.2em 0.1em, #ffb7d8 0 0 0 inset;
}

#blue {
    color: #124ce4;
    background-color: #f1f4ff;
    box-shadow: #124ce4 0.07em 0.2em 0.3em, #a3b8ef 0 -0.07em 0 0 inset;
}

#blue:hover {
    box-shadow: #124ce4 0.07em 0.2em 0.1em, #a3b8ef 0 0 0 inset;
}

#gray {
    color: #353535;
    background-color: #f3f3f3;
    box-shadow: #353535 0.07em 0.2em 0.3em, #bababa 0 -0.07em 0 inset;
}

#gray:hover {
    box-shadow: #353535 0.07em 0.2em 0.1em, #bababa 0 0 0 inset;
}

#menu {
    position: fixed;
    top: 0.1em;
    right: 0.2em;
    z-index: 1;
}

#menuBtn {
    background: transparent;
    box-shadow: none;
    transition: transform 0.3s ease;
}

#menuBtn:hover {
    font-weight: bold;
    box-shadow: none;
    transform: scale(1.1);
}

#menuContent {
    position: fixed;
    flex-direction: column;
    right: 0;
    background-color: var(--color3);
    padding: 1em;
    margin-right: 2.2em;
    border-radius: 1em;
    gap: 0.9rem;
    font-size: clamp(1rem, 1.5rem, 3.5vw);
    font-family: "Webstorm mono", monospace;
    font-weight: bold;
}

#legend {
    font-size: clamp(0.7rem, 1rem, 2.5vw);
    font-weight: normal;
    color: var(--color2);
}

.premadeWs {
    font-weight: normal;
    font-size: clamp(0.8rem, 1.2rem, 2.8vw);
    box-shadow: none;
    font-family: "Webstorm mono", monospace;
    text-align: left;
    padding: 0;
}

.premadeWs:hover {
    font-weight: bold;
    box-shadow: none;
    transform: scale(1.03);
}

/*TIMER & CUES*/
.flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    gap: 4vw;
}

@media (orientation: portrait), (max-width: 900px) {
    .flex-container.portrait-mode {
        flex-direction: column;
        padding-top: 3em;
        padding-bottom: 6em;
    }
}

#cues, #timer {
    border: 1.2em solid var(--color3);
    border-radius: 1em;
    background: var(--color3);
    font-size: clamp(1.5rem, 2.5em, 2.2vw);
}

.start-btn {
    position: fixed;
    bottom: 4vmin;
    right: 4vmin;
}

.back-btn {
    position: fixed;
    bottom: 4vmin;
    left: 4vmin;
}

.start, #backBtn {
    font-size: clamp(1.2rem, 1.6rem, 1.6vw);
    padding: 0.9em 1em;
}

.circle-btn {
    font-size: clamp(14px, 1.2vw, 100vw);
    padding: 0.3em 0.6em;
    border-radius: 6em;
    box-shadow: var(--color1) 0.07em 0.2em 0.3em, var(--color2) 0 -0.1em 0 inset;
}

.circle-btn:hover {
    box-shadow: var(--color1) 0.07em 0.2em 0.1em, var(--color2) 0 -0.05em 0 inset;
    transform: translateY(0.1em);
}

#pauseResumeBtn {
    padding-right: 0.5em;
    padding-left: 0.5em;
}

#play {
    display: none;
}

#pause {
    display: inline-block;
}

#timerScreen {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2vh;
}

#countdown {
    display: flex;
    justify-content: center;
    font-size: clamp(70px, 300px, 30vw);
    color: var(--color2);
}

@media (max-height: 500px) {
    #countdown {
        font-size: clamp(70px, 300px, 30vh);
    }
}

#nextExercise {
    text-align: right;
    font-size: clamp(18px, 30px, 3.5vw);
    font-weight: bold;
    color: var(--color2);
}

/*CUES ONLY*/
#cueTable th {
    padding-right: 2.2vw;
    text-align: left;
}

input {
    height: clamp(1.5rem, 2rem, 2.2vw);
    width: clamp(5rem, 12rem, 9vw);
    border-radius: 0.8em;
    border: 0.18em solid var(--color2);
    color: var(--color1);
}

#cueText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

#currentExerciseContainer {
    font-size: clamp(30px, 5vw, 20vw);
    font-weight: bold;
}

#nextExerciseContainer {
    font-size: clamp(20px, 3.5vw, 10vw);
    font-weight: bold;
    color: var(--color2);
}

#cueProgress {
    font-size: clamp(18px, 2vw, 100vw);
    font-weight: bold;
}

#cueSpecific {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1em;
}

.prev-comp {
    font-size: clamp(10px, 35px, 4vw);
    height: 1.6em;
    padding: 0 0.6em 0.2em;
    border-radius: 0.4em;
    box-shadow: var(--color1) 0.07em 0.2em 0.3em, var(--color2) -0.05em -0.1em 0 inset;
}

.prev-comp:hover {
    box-shadow: var(--color1) 0.07em 0.2em 0.15em, var(--color2) 0 -0.05em 0 inset;
    transform: translateY(0.1em);
}

/*TIMER ONLY*/
#timerTable th {
    padding-right: 1.2em;
}

#workOrRest {
    text-align: center;
    font-size: clamp(30px, 60px, 6vw);
    font-weight: bold;
}

#progressContainer {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: clamp(100px, 700px, 70vw);
}

#myProgress {
    position: absolute;
    width: clamp(100px, 700px, 70vw);
    height: clamp(20px, 4vmin, 40px);
    background-color: transparent;
    box-shadow: 3px 5px 12px var(--color1);
    border-radius: 6em;
}

#myBar {
    position: absolute;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--color2), var(--color1));
    border-radius: 3em;
    transition: width 1s ease;
}

#progressLabel {
    margin-top: 4px;
    width: 4em;
    text-align: right;
    font-weight: bold;
    font-size: clamp(0.5em, 1.5vw, 1em);
}

/*DROPDOWNS*/
h1 {
    font-size: 100%;
}

select {
    padding: 0.4em 0.2em;
    font-size: 1em;
    border: 0;
    background-color: transparent;
    color: var(--color1);
}

select option {
    background-color: var(--color3);
    color: var(--color1);
}

h1, .dropdown {
    display: inline-block;
    vertical-align: middle;
}

#repeatDropdownContainer {
    margin-left: 1em;
}

#restDropdownContainer {
    margin-left: 1.54em;
}

#roundDropdownContainer {
    margin-left: 0.95em;
}

#roundRestDropdownContainer {
    margin-left: 1.8em;
}





