html {
    font-size: 14px;
}

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

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

body {
    margin-bottom: 60px;
}

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

.checked {
    color: orange;
}

.badge.status {
    min-width: 100px;
}

.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;
    }
}


/* ====================
   CATEGORY RESULT STYLES
   ==================== */

.category-result-card {
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 16px;
    transition: all 0.2s ease;
    border: 1px solid rgba(0,0,0,0.1);
    text-decoration: none !important;
    display: block;
}

.category-result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333 !important;
}

.category-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.category-score {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.category-progress {
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.category-progress-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease;
}

.category-progress-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.3);
}

/* Category detail page specific styles */
.category-detail-card {
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.1);
}

.category-detail-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.category-detail-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.category-detail-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.category-detail-score {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.category-detail-progress {
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    margin-top: 8px;
}

.category-detail-progress-bar {
    height: 100%;
    border-radius: 6px;
    transition: width 0.8s ease;
}

.category-detail-progress-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.4);
}
