html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.fa-star {
    font-size: 24px;
    color: lightgray;
    cursor: pointer;
}

.checked {
    color: orange;
}

.time-left {
    font-size: 14px;
    color: #555;
}

    .time-left i {
        color: blue; /* Color of the hourglass icon */
        margin-right: 8px; /* Space between the icon and text */
    }

#minutes-left {
    font-weight: bold; /* Make the number of minutes bold */
    color: blue; /* Color of the number of minutes */
}

ul.no-bullets {
    list-style-type: none; /* Remove bullets */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margins */
}

/*****  SLIDE 5 *****/

.option-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 700px; /* Adjust this as needed */
}

.options {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 180px;
}

    .options label {
        display: inline-block;
        text-align: center;
        line-height: unset;
        margin-bottom: 3px;
        margin-top: 3px;
    }

.option-labels-first {
    text-align: right;
}

.options label .option-check {
    margin: auto;
}

/* Left and right labels */
.option-labels {
    flex: 1;
    margin: 10px;
    max-width: 220px;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .option-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .options {
        width: 100%;
        flex-direction: column;
        justify-content: space-around;
        max-width: none;
    }

    .option-labels {
        margin-top: 10px;
        width: 100%;
        display: flex;
        text-align: center;
        justify-content: center;
        margin-bottom: 10px;
        margin-left: 0px;
        margin-right: 0px;
        max-width: none;
    }

    .option-labels-first {
        text-align: center;
    }
}
