@import 'WiseUpDude.Client.ocswpmst4j.bundle.scp.css';

/* _content/WiseUpDude/Components/Account/Controls/ExternalLoginButton.razor.rz.scp.css */
.google-pill-button[b-3kileov5tl] {
    /* Pill shape and layout */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 9999px; /* Fully rounded edges for the pill look */
    /* Border and background */
    background-color: #fff;
    border: 1px solid #d2d2d2; /* Slightly darker outline */
    color: #3c4043;
    /* Typography */
    font-family: Roboto, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    /* Visual and interaction styles */
    cursor: pointer;
    box-shadow: none;
    transition: background-color 0.2s ease-in-out;
}

    .google-pill-button:hover[b-3kileov5tl] {
        background-color: #f7f7f7;
    }

    .google-pill-button:active[b-3kileov5tl] {
        background-color: #eee;
    }

    .google-pill-button:focus[b-3kileov5tl] {
        outline: 2px solid #4285f4;
        outline-offset: 2px;
    }

.google-signin-logo[b-3kileov5tl] {
    width: 20px; /* Increased for better visibility */
    height: 20px;
    margin-right: 8px; /* Spacing between the icon and the text */
}
/* _content/WiseUpDude/Components/Controls/FeaturedQuizzesCarousel.razor.rz.scp.css */
/* Featured Carousel Container */
.featured-carousel-container[b-499txn69no] {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: #fff;
}

/* Header styling to match the blue banner */
.featured-carousel-header[b-499txn69no] {
    background: linear-gradient(135deg, #007bff 0%, #0056d3 100%);
    padding: 0.75rem 1.25rem;
    color: white;
}

.featured-carousel-title[b-499txn69no] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
}

/* Content area */
.featured-carousel-content[b-499txn69no] {
    padding: 1rem;
}

/* Horizontal scrolling container */
.featured-quizzes-scroll[b-499txn69no] {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e0 transparent;
}

    .featured-quizzes-scroll[b-499txn69no]::-webkit-scrollbar {
        height: 4px;
    }

    .featured-quizzes-scroll[b-499txn69no]::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 2px;
    }

    .featured-quizzes-scroll[b-499txn69no]::-webkit-scrollbar-thumb {
        background: #cbd5e0;
        border-radius: 2px;
    }

        .featured-quizzes-scroll[b-499txn69no]::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

/* Individual quiz card */
.featured-quiz-card[b-499txn69no] {
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

    .featured-quiz-card:hover[b-499txn69no] {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border-color: #007bff;
    }

/* Quiz type badge */
.featured-quiz-badge[b-499txn69no] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* Alternative badge colors for different types */
.featured-quiz-card:nth-child(2n) .featured-quiz-badge[b-499txn69no] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.featured-quiz-card:nth-child(3n) .featured-quiz-badge[b-499txn69no] {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.featured-quiz-card:nth-child(4n) .featured-quiz-badge[b-499txn69no] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.featured-quiz-card:nth-child(5n) .featured-quiz-badge[b-499txn69no] {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

/* Quiz content */
.featured-quiz-content[b-499txn69no] {
    padding: 1rem;
}

.featured-quiz-difficulty[b-499txn69no] {
    font-size: 0.75rem;
    color: #64748b;
    text-align: right;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.featured-quiz-title[b-499txn69no] {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-quiz-description[b-499txn69no] {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Take quiz button */
.featured-quiz-btn[b-499txn69no] {
    background: linear-gradient(135deg, #007bff 0%, #0056d3 100%);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    width: 100%;
    justify-content: center;
}

    .featured-quiz-btn:hover[b-499txn69no] {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
        background: linear-gradient(135deg, #0056d3 0%, #004085 100%);
    }

    .featured-quiz-btn:active[b-499txn69no] {
        transform: translateY(0);
    }

/* Empty state */
.featured-empty-state[b-499txn69no] {
    text-align: center;
    padding: 2rem;
}

    .featured-empty-state i[b-499txn69no] {
        font-size: 2rem;
        display: block;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .featured-quiz-card[b-499txn69no] {
        min-width: 240px;
        max-width: 240px;
    }

    .featured-carousel-content[b-499txn69no] {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .featured-quiz-card[b-499txn69no] {
        min-width: 200px;
        max-width: 200px;
    }

    .featured-quiz-content[b-499txn69no] {
        padding: 0.75rem;
    }
}
/* _content/WiseUpDude/Components/Controls/HoverPopover.razor.rz.scp.css */
/* site.css */
.popover-box[b-urengpva9a] {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%) translateX(10px);
    z-index: 1000;
    background-color: #fefefe;
    border: 1px solid #ccc;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    font-size: 0.9rem;
    white-space: normal;
    width: max-content;
    max-width: 320px;
    word-wrap: break-word;
    transition: opacity 0.2s ease-in-out;
    opacity: 0.95;
}

.popover-arrow[b-urengpva9a] {
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 10px solid #fefefe;
    box-shadow: -1px 0 0 #ccc;
}
/* _content/WiseUpDude/Components/Controls/LearningTrackCategoryPage.razor.rz.scp.css */
.source-btn.has-source[b-gr45ouzlg2] {
    border: 2.5px solid #fd7e14 !important; /* Bootstrap orange color */
    box-shadow: 0 0 0 0.15rem #fd7e1433;
    position: relative;
}

.source-badge[b-gr45ouzlg2] {
    position: absolute;
    top: -7px;
    right: -7px;
    background: #fd7e14;
    color: #fff;
    border-radius: 50%;
    padding: 0.15em 0.5em;
    font-size: 0.75em;
    font-weight: bold;
    min-width: 1.5em;
    text-align: center;
    border: 2px solid #fff;
    z-index: 2;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
 
/* _content/WiseUpDude/Components/Controls/LearningTrackPage.razor.rz.scp.css */
.category-btn.has-category[b-5h49syxc2q] {
    border: 2.5px solid #0d6efd !important; /* Bootstrap primary color */
    box-shadow: 0 0 0 0.15rem #0d6efd33;
    position: relative;
}

.category-badge[b-5h49syxc2q] {
    position: absolute;
    top: -7px;
    right: -7px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    padding: 0.15em 0.5em;
    font-size: 0.75em;
    font-weight: bold;
    min-width: 1.5em;
    text-align: center;
    border: 2px solid #fff;
    z-index: 2;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
/* _content/WiseUpDude/Components/Controls/LearningTrackQuizPage.razor.rz.scp.css */
.question-btn.has-question[b-mt3aarstp8] {
    border: 2.5px solid #6f42c1 !important; /* Bootstrap purple color */
    box-shadow: 0 0 0 0.15rem #6f42c133;
    position: relative;
}

.question-badge[b-mt3aarstp8] {
    position: absolute;
    top: -7px;
    right: -7px;
    background: #6f42c1;
    color: #fff;
    border-radius: 50%;
    padding: 0.15em 0.5em;
    font-size: 0.75em;
    font-weight: bold;
    min-width: 1.5em;
    text-align: center;
    border: 2px solid #fff;
    z-index: 2;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
/* _content/WiseUpDude/Components/Controls/LearningTrackQuizQuestionsPage.razor.rz.scp.css */
.question-btn.has-question[b-4zr32dz1hk] {
    border: 2.5px solid #0dcaf0 !important; /* Bootstrap info color */
    box-shadow: 0 0 0 0.15rem #0dcaf033;
    position: relative;
    background: #e3f7fb;
}

.question-badge[b-4zr32dz1hk] {
    position: absolute;
    top: -7px;
    right: -7px;
    background: #0dcaf0;
    color: #00394f;
    border-radius: 50%;
    padding: 0.15em 0.5em;
    font-size: 0.75em;
    font-weight: bold;
    min-width: 1.5em;
    text-align: center;
    border: 2px solid #fff;
    z-index: 2;
    box-shadow: 0 1px 4px rgba(13,202,240,0.12);
}
/* _content/WiseUpDude/Components/Controls/LearningTrackSourcesPage.razor.rz.scp.css */

.quiz-btn.has-quiz[b-cqi8qgp3qd] {
    border: 2.5px solid #198754 !important; /* Bootstrap success color */
    box-shadow: 0 0 0 0.15rem #19875433;
    position: relative;
}

.quiz-badge[b-cqi8qgp3qd] {
    position: absolute;
    top: -7px;
    right: -7px;
    background: #198754;
    color: #fff;
    border-radius: 50%;
    padding: 0.15em 0.5em;
    font-size: 0.75em;
    font-weight: bold;
    min-width: 1.5em;
    text-align: center;
    border: 2px solid #fff;
    z-index: 2;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
/* _content/WiseUpDude/Components/Controls/NavBar.razor.rz.scp.css */
.navbar[b-yhvqfoihta] {
    margin-bottom: 20px;
}
/* _content/WiseUpDude/Components/Controls/OptionButton.razor.rz.scp.css */
/* OptionButton.css */
.option-button-label[b-esabm8kthn] {
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 5px 0;
}

.option-button-label .form-check-input[b-esabm8kthn] {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    border: 1.5px solid #5a5a5a;  Slightly darker border 
    background-color: #ffffff;  White background 
}

/*.option-button-label .form-check-input:checked {
    background-color: #5a5a5a;  Slightly darker blue when checked 
}*/

.option-button-label .form-check-label[b-esabm8kthn] {
    font-weight: normal;
    font-size: 15px;  Slightly larger text 
}
/* _content/WiseUpDude/Components/Controls/PleaseWaitDialog.razor.rz.scp.css */
/* PleaseWaitDialog.razor.css */

.please-wait-overlay[b-d7gyezr5kn] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65); /* Slightly darker overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 15px; /* Provides spacing from screen edges */
    box-sizing: border-box;
}

/* Styles for the Bootstrap 5 card within the overlay */
.please-wait-card.card[b-d7gyezr5kn] {
    min-width: 280px;
    max-width: 380px;
    width: 100%;
    /* Bootstrap's 'shadow' class already provides a nice shadow. */
    /* --- ADD OR MODIFY THIS LINE FOR A MORE PROMINENT BORDER --- */
    border: 2px solid #6c757d; /* Example: A 2px solid medium-gray border */
    /* ------------------------------------------------------------- */
    /* Bootstrap's default border-radius should still apply and look good.
       It's typically var(--bs-card-border-radius) which defaults to .375rem */
}

/* Styles for the image on top of the card */
.please-wait-card .loading-gif.card-img-top[b-d7gyezr5kn] {
    max-height: 300px; /* You can adjust this value to control the maximum image height */
    width: 100%; /* Ensures the image element spans the full width of the card */
    object-fit: contain; /* Ensures the entire image content is visible, scaled down to fit, maintaining aspect ratio.
                               This might result in letterboxing (empty space on top/bottom or sides) if the aspect
                               ratio of the GIF doesn't match the aspect ratio of the space defined by
                               width:100% and max-height:300px. */
    /* margin-left: auto; and margin-right: auto; are not needed if width is 100% */
    background-color: #f8f9fa; /* Optional: a light background for the image area if GIFs have transparency
                                  or if letterboxing occurs with 'contain'. You can set this to transparent
                                  if you prefer. */
}

/* Styles for the loading text within the card body */
.please-wait-card .card-body .loading-text.card-text[b-d7gyezr5kn] {
    font-size: 1.1rem; /* Bootstrap's default card-text is 1rem, this is slightly larger */
    font-weight: 500; /* Medium weight */
    margin-top: 0.25rem; /* Adjust space if needed */
    margin-bottom: 0;
    /* text-center utility class is applied directly in markup */
}

/* Error message styling */
.please-wait-card .card-body .error-message.card-text[b-d7gyezr5kn] {
    /* Bootstrap 5 variable for danger text color, or use a specific hex code */
    color: var(--bs-danger-text-emphasis, #dc3545);
    font-weight: bold;
    font-size: 1rem;
    /* text-center utility class is applied directly in markup */
}

/* General styling for card body content for consistent spacing */
.please-wait-card .card-body[b-d7gyezr5kn] {
    padding: 1.25rem; /* Default Bootstrap card body padding, adjust if needed */
}

    .please-wait-card .card-body p:last-child[b-d7gyezr5kn] {
        margin-bottom: 0; /* Remove bottom margin from the last paragraph in card-body */
    }

/* Styling for the small muted text used with spinners or errors */
.please-wait-card .text-muted.small[b-d7gyezr5kn] {
    font-size: 0.8em;
}
/* _content/WiseUpDude/Components/Controls/PopupDialog.razor.rz.scp.css */
.popup-container[b-hdexa7v1ek] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-box[b-hdexa7v1ek] {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    width: 400px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
/* _content/WiseUpDude/Components/Controls/QuestionCard.razor.rz.scp.css */
.btn[b-r14xtawdv4] {
    transition: all 0.15s ease-in-out;
}

    .btn:hover[b-r14xtawdv4] {
        transform: scale(1.04);
    }

    .btn:focus[b-r14xtawdv4] {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
    }

.feedback-correct[b-r14xtawdv4] {
    color: #2e7d32; /* Soft forest green */
    font-weight: bold;
}

.feedback-incorrect[b-r14xtawdv4] {
    color: #c62828; /* Muted red */
    font-weight: bold;
}

.btn-correct[b-r14xtawdv4] {
    /*background-color: #a5d6a7 !important;*/ /* Soft green */
    color: #1b5e20 !important;
    border: 2px solid #1b5e20 !important;
}

.btn-incorrect[b-r14xtawdv4] {
    /*background-color: #ef9a9a !important;*/ /* Soft red */
    color: #b71c1c !important;
    border: 2px solid #b71c1c !important;
}

.question-card[b-r14xtawdv4] {
    color: #f1f1f1; /* Light text */
    background-color: #1a1a1a; /* Dark card background */
    padding: 1rem;
    border-radius: 12px;
}

    .question-card h4[b-r14xtawdv4],
    .question-card p[b-r14xtawdv4] {
        font-size: 1.05rem;
        line-height: 1.5;
    }

.btn-correct[b-r14xtawdv4],
.btn-incorrect[b-r14xtawdv4] {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}
/* _content/WiseUpDude/Components/Controls/QuizLoadingDialog.razor.rz.scp.css */
.quiz-loading-overlay[b-sc9xag52e6] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(3px);
}

.quiz-loading-card[b-sc9xag52e6] {
    max-width: 400px;
    min-width: 300px;
    border: none;
    border-radius: 15px;
}

.quiz-loading-animation[b-sc9xag52e6] {
    font-size: 1.5rem;
}

.loading-text[b-sc9xag52e6] {
    color: #495057;
    font-size: 1rem;
    margin-bottom: 0;
}

.progress[b-sc9xag52e6] {
    border-radius: 10px;
}

.progress-bar[b-sc9xag52e6] {
    border-radius: 10px;
    background: linear-gradient(45deg, #007bff, #0056b3);
}
/* _content/WiseUpDude/Components/Controls/ScoreTracker.razor.rz.scp.css */
.score-tracker[b-sxjc28e8cw] {
    position: sticky;
    top: 1rem;
    right: 1rem;
    background-color: #f8f9fa;
    color: #212529;
    padding: 0.5rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    font-weight: bold;
    z-index: 1000;
    margin-bottom: 1rem; /* Added space below the score area */
}
/* _content/WiseUpDude/Components/Controls/Spinner.razor.rz.scp.css */
.overlay[b-res9m4efwv] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.spinner[b-res9m4efwv] {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #007bff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin-b-res9m4efwv 1s linear infinite;
    margin-bottom: 15px;
}

.overlay-text[b-res9m4efwv] {
    color: #fff;
    font-size: 1.2rem;
}

@keyframes spin-b-res9m4efwv {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* _content/WiseUpDude/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-8fjn2p9nio] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-8fjn2p9nio] {
    flex: 1;
}

.sidebar[b-8fjn2p9nio] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-8fjn2p9nio] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-8fjn2p9nio]  a, .top-row[b-8fjn2p9nio]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-8fjn2p9nio]  a:hover, .top-row[b-8fjn2p9nio]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-8fjn2p9nio]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-8fjn2p9nio] {
        justify-content: space-between;
    }

    .top-row[b-8fjn2p9nio]  a, .top-row[b-8fjn2p9nio]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-8fjn2p9nio] {
        flex-direction: row;
    }

    .sidebar[b-8fjn2p9nio] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-8fjn2p9nio] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-8fjn2p9nio]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-8fjn2p9nio], article[b-8fjn2p9nio] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-8fjn2p9nio] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-8fjn2p9nio] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/WiseUpDude/Components/Layout/MinimalLayout.razor.rz.scp.css */
/* General body styling */
body[b-nfkweqzjs6] {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 16px; /* Set a base font size for better readability */
}

/* Container for the layout */
.container[b-nfkweqzjs6] {
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

/* Navigation links */
.nav-link[b-nfkweqzjs6] {
    font-weight: normal;
    color: #d7dbe0;
    text-decoration: none;
    font-size: 1rem; /* Use relative font size for better scaling */
}

.nav-link.active[b-nfkweqzjs6] {
    font-weight: bold;
    color: #0d6efd;
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .container[b-nfkweqzjs6] {
        padding: 0 10px;
    }

    .nav-link[b-nfkweqzjs6] {
        font-size: 1.1rem; /* Slightly larger font size for readability */
    }

    .mt-4[b-nfkweqzjs6] {
        margin-top: 2rem;
    }
}

/* Adjustments for very small screens */
@media (max-width: 576px) {
    .container[b-nfkweqzjs6] {
        padding: 0 5px;
    }

    .nav-link[b-nfkweqzjs6] {
        font-size: 1rem; /* Increase font size for high-DPI devices */
    }

    .mt-4[b-nfkweqzjs6] {
        margin-top: 1.5rem;
    }
}

/* Adjustments for larger screens */
@media (min-width: 992px) {
    .container[b-nfkweqzjs6] {
        max-width: 960px;
    }

    .nav-link[b-nfkweqzjs6] {
        font-size: 1.1rem; /* Slightly larger font size for desktops */
    }
}

.nav-link.active[b-nfkweqzjs6] {
    font-weight: bold;
    color: #0000ff; /* or any color you like */
    /* Or add underline, background, etc. */
    /* text-decoration: underline; */
}
/* _content/WiseUpDude/Components/Layout/NavMenu.razor.rz.scp.css */
/* _content/WiseUpDude/Components/Layout/NavMenu_ORIG.razor.rz.scp.css */
.navbar-toggler[b-9f1n8u66hs] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-9f1n8u66hs] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-9f1n8u66hs] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-9f1n8u66hs] {
    font-size: 1.1rem;
}

.bi[b-9f1n8u66hs] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-9f1n8u66hs] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-9f1n8u66hs] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-9f1n8u66hs] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-9f1n8u66hs] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-9f1n8u66hs] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-9f1n8u66hs] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-9f1n8u66hs] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-9f1n8u66hs] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-9f1n8u66hs] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-9f1n8u66hs] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-9f1n8u66hs] {
        padding-bottom: 1rem;
    }

    .nav-item[b-9f1n8u66hs]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-9f1n8u66hs]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-9f1n8u66hs]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-9f1n8u66hs] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-9f1n8u66hs] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-9f1n8u66hs] {
        display: none;
    }

    .nav-scrollable[b-9f1n8u66hs] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/WiseUpDude/Components/Pages/AIQuizMaker.razor.rz.scp.css */
/* Modern, responsive, and attractive styles for RollYourOwn.razor */
:root[b-tnwm2nxdy0] {
    --ryo-primary: #0d6efd;
    --ryo-success: #22c55e;
    --ryo-warning: #fbbf24;
    --ryo-bg: #f8fafc;
    --ryo-card-bg: #fff;
    --ryo-border: #e3e8ee;
    --ryo-radius: 1rem;
    --ryo-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
}

/* Header styles */
.container .display-4[b-tnwm2nxdy0] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d6efd;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.container .lead[b-tnwm2nxdy0] {
    font-size: 1.15rem;
    font-weight: 400;
    color: #6c757d;
}

.ryo-card-container[b-tnwm2nxdy0] {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Workflow instruction card */
.ryo-workflow-card[b-tnwm2nxdy0] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: var(--ryo-radius);
    box-shadow: var(--ryo-shadow);
}

.ryo-workflow-title[b-tnwm2nxdy0] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.ryo-workflow-steps[b-tnwm2nxdy0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.ryo-workflow-step[b-tnwm2nxdy0] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 150px;
}

.ryo-step-number[b-tnwm2nxdy0] {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ryo-step-content[b-tnwm2nxdy0] {
    flex: 1;
}

    .ryo-step-content strong[b-tnwm2nxdy0] {
        display: block;
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .ryo-step-content small[b-tnwm2nxdy0] {
        font-size: 0.85rem;
        opacity: 0.9;
    }

.ryo-workflow-arrow[b-tnwm2nxdy0] {
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .ryo-workflow-steps[b-tnwm2nxdy0] {
        flex-direction: column;
    }

    .ryo-workflow-arrow[b-tnwm2nxdy0] {
        transform: rotate(90deg);
    }
}

/* Form sections */
.ryo-section[b-tnwm2nxdy0] {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
}

    .ryo-section:not(:last-child)[b-tnwm2nxdy0] {
        border-bottom: 2px solid var(--ryo-border);
    }

.ryo-section-header[b-tnwm2nxdy0] {
    margin-bottom: 1rem;
}

.ryo-section-badge[b-tnwm2nxdy0] {
    display: inline-block;
    background: #e7f3ff;
    color: var(--ryo-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ryo-section-title[b-tnwm2nxdy0] {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* Option cards */
.ryo-option-card[b-tnwm2nxdy0] {
    background: #f8f9fa;
    border: 2px solid #e3e8ee;
    border-radius: var(--ryo-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.ryo-option-header[b-tnwm2nxdy0] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

    .ryo-option-header i[b-tnwm2nxdy0] {
        font-size: 1.5rem;
    }

/* Divider */
.ryo-divider[b-tnwm2nxdy0] {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

    .ryo-divider[b-tnwm2nxdy0]::before,
    .ryo-divider[b-tnwm2nxdy0]::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 45%;
        height: 1px;
        background: #dee2e6;
    }

    .ryo-divider[b-tnwm2nxdy0]::before {
        left: 0;
    }

    .ryo-divider[b-tnwm2nxdy0]::after {
        right: 0;
    }

    .ryo-divider span[b-tnwm2nxdy0] {
        background: white;
        padding: 0 1rem;
        color: #6c757d;
        font-weight: 600;
        font-size: 0.95rem;
    }

.ryo-form-card[b-tnwm2nxdy0] {
    background: var(--ryo-card-bg);
    border-radius: var(--ryo-radius);
    box-shadow: var(--ryo-shadow);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

/* Container layout */
.container.py-5[b-tnwm2nxdy0] {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container .display-4[b-tnwm2nxdy0] {
        font-size: 2rem;
    }

    .ryo-card-container[b-tnwm2nxdy0] {
        padding: 0 0.5rem;
    }

    .ryo-form-card[b-tnwm2nxdy0] {
        padding: 1.5rem;
    }

    .ryo-option-card[b-tnwm2nxdy0] {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .container .display-4[b-tnwm2nxdy0] {
        font-size: 1.75rem;
    }

    .ryo-workflow-card[b-tnwm2nxdy0] {
        padding: 1rem;
    }

    .ryo-form-card[b-tnwm2nxdy0] {
        padding: 1rem;
    }

    .container.py-5[b-tnwm2nxdy0] {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
}
/* _content/WiseUpDude/Components/Pages/Home.razor.rz.scp.css */
/* Enhanced Dashboard Stats Cards */
.dashboard-stats-card[b-kh5bkkg7eb] {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
}

.dashboard-stats-card:hover[b-kh5bkkg7eb] {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stats-icon-wrapper[b-kh5bkkg7eb] {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.stats-icon[b-kh5bkkg7eb] {
    font-size: 28px;
}

.stats-accent[b-kh5bkkg7eb] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 0 0 16px 16px;
}

.stats-accent-primary[b-kh5bkkg7eb] { background: linear-gradient(90deg, #0d6efd 0%, #6610f2 100%); }
.stats-accent-success[b-kh5bkkg7eb] { background: linear-gradient(90deg, #198754 0%, #20c997 100%); }
.stats-accent-warning[b-kh5bkkg7eb] { background: linear-gradient(90deg, #fd7e14 0%, #ffc107 100%); }

.dashboard-stats-card .card-title[b-kh5bkkg7eb] {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.dashboard-stats-card .card-subtitle[b-kh5bkkg7eb] {
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Modern Quiz Cards */
.quiz-card-modern[b-kh5bkkg7eb] {
    border: none;
    border-radius: 12px; /* rounded corners like before */
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
    min-height: 240px;
}

.quiz-card-modern:hover[b-kh5bkkg7eb] { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,.15); }

.quiz-card-header[b-kh5bkkg7eb] {
    background: #212529; /* solid dark like the screenshot */
    color: #fff;
    padding: 0.8rem 1rem; /* compact */
    border: none;
    position: relative;
    flex-shrink: 0;
}

.quiz-card-title[b-kh5bkkg7eb] {
    font-size: 0.875rem; /* Reduced from 1rem to match screenshot */
    font-weight: 600;
    margin: 0;
    color: #fff;
    flex: 1;
    min-width: 0;
}

.quiz-score-badge[b-kh5bkkg7eb] {
    background: #dc3545; /* red */
    color: #fff;
    padding: 0.2rem 0.55rem;
    border-radius: 9999px; /* pill like screenshot */
    font-size: 0.78rem;
    font-weight: 700;
    margin-left: 0.75rem;
    flex-shrink: 0;
}

.quiz-score-badge.score-high[b-kh5bkkg7eb] { background: #28a745; }
.quiz-score-badge.score-mid[b-kh5bkkg7eb] { background: #fd7e14; }
.quiz-score-badge.score-low[b-kh5bkkg7eb] { background: #ffc107; color: #212529; }
.quiz-score-badge.score-bad[b-kh5bkkg7eb] { background: #dc3545; }

.quiz-card-body[b-kh5bkkg7eb] { padding: 1.1rem; background: #fff; margin-bottom: 0; flex: 1 1 auto; display: flex; flex-direction: column; }

/* Badge and value row like older design */
.quiz-type-badge[b-kh5bkkg7eb] {
    display: inline-block;
    padding: 0.25rem 0.6rem; /* compact */
    border-radius: 9999px; /* pill */
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: none; /* 'Prompt:' with normal casing */
    letter-spacing: 0;
    line-height: 1;
}

.quiz-type-badge.badge-prompt[b-kh5bkkg7eb] { background: #ffc107; color: #fff; }
.quiz-type-badge.badge-topic[b-kh5bkkg7eb] { background: #0d6efd; color: #fff; }
.quiz-type-badge.badge-url[b-kh5bkkg7eb] { background: #6f42c1; color: #fff; }

/* Value text - bold but not too bold */
.quiz-type-value[b-kh5bkkg7eb] { font-weight: 500; color: #1f2937; }

.quiz-description[b-kh5bkkg7eb] { color: #64748b; font-size: 0.9rem; line-height: 1.5; margin-bottom: 0; }

.quiz-card-actions[b-kh5bkkg7eb] { background: #f8f9fa; border-top: 1px solid #dee2e6; padding: 0.5rem 1rem; margin-top: auto; flex-shrink: 0; }

.quiz-action-buttons[b-kh5bkkg7eb] { display: flex; justify-content: space-around; align-items: center; gap: 0.5rem; flex-wrap: nowrap; overflow: hidden; }

.quiz-action-btn[b-kh5bkkg7eb] { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; background: none; border: none; color: #64748b; cursor: pointer; transition: all .2s ease; padding: 0.35rem 0.25rem; border-radius: 8px; text-decoration: none; font-size: 0.85rem; font-weight: 500; min-width: 44px; flex: 1 1 auto; max-width: none; text-align: center; }

.quiz-action-btn i[b-kh5bkkg7eb] { font-size: 1.05rem; }

.quiz-action-btn.action-play[b-kh5bkkg7eb] { color: #0d6efd; }
.quiz-action-btn.action-restart[b-kh5bkkg7eb] { color: #10b981; }
.quiz-action-btn.action-delete[b-kh5bkkg7eb] { color: #ef4444; }
.quiz-action-btn.action-edit[b-kh5bkkg7eb] { color: #64748b; }
.quiz-action-btn.action-learn[b-kh5bkkg7eb] { color: #8b5cf6; }

/* Filter controls remain squared per previous request */
.quiz-filter-pills[b-kh5bkkg7eb] { display: flex; flex-wrap: wrap; gap: 0.75rem; background: transparent; padding: 0; border-radius: 0; box-shadow: none; width: 100%; margin-bottom: 1rem; font-size: 0.95em; max-width: 100%; }

.quiz-filter-pill[b-kh5bkkg7eb] { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.35rem 0.8rem; border-radius: 4px; background: #f8f9fa; color: #495057; font-weight: 500; cursor: pointer; border: 1px solid #dee2e6; transition: background-color .15s ease, color .15s ease, border-color .15s ease; box-shadow: none; position: relative; font-size: 0.9em; margin-bottom: 0; white-space: nowrap; text-decoration: none; }

.quiz-filter-pill.active[b-kh5bkkg7eb] { background: #0d6efd10; color: #0d6efd; border-color: #0d6efd; transform: none; }
.quiz-filter-pill:hover:not(.active)[b-kh5bkkg7eb] { background: #eef2f6; color: #0f172a; border-color: #cbd5e1; }

.quiz-count-badge[b-kh5bkkg7eb] { background: #6c757d; color: #fff; border-radius: 3px; padding: 0 0.35em; height: 1.35em; min-width: 1.35em; font-size: 0.75em; font-weight: 600; line-height: 1.35em; }
.quiz-filter-pill.active .quiz-count-badge[b-kh5bkkg7eb] { background: #0d6efd; color: #fff; }

.quiz-filter-pills input[type="radio"][b-kh5bkkg7eb] { display: none; }

/* Edit mode */
.quiz-edit-input[b-kh5bkkg7eb] { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; border-radius: 6px; padding: 0.4rem 0.6rem; font-size: 0.95rem; }
.quiz-edit-buttons[b-kh5bkkg7eb] { display: flex; gap: .5rem; flex-shrink: 0; }

/* Hero */
.hero-header[b-kh5bkkg7eb] { padding: 1.25rem 0; margin-bottom: 1.25rem !important; }
.dynamic-title[b-kh5bkkg7eb] { font-size: 2.75rem; font-weight: 700; line-height: 1.1; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-shadow: 0 4px 12px rgba(102,126,234,.15); font-family: 'Inter','Segoe UI',system-ui,-apple-system,sans-serif; letter-spacing: -.02em; }
.hero-subtitle[b-kh5bkkg7eb] { font-size: 1.1rem; font-weight: 400; color: #6b7280; max-width: 600px; margin: 0 auto; line-height: 1.6; font-family: 'Inter','Segoe UI',system-ui,-apple-system,sans-serif; }

h3[b-kh5bkkg7eb] {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: #1a1a1a;
}

/* Professional typography for hero section */
.dynamic-title[b-kh5bkkg7eb] {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-size: 2.5rem;
    color: #0d1117;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    text-shadow: none;
}

.hero-subtitle[b-kh5bkkg7eb] {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    font-size: 1.125rem;
    color: #57606a;
    line-height: 1.5;
}

/* Additional refinements for a corporate look */
.hero-header[b-kh5bkkg7eb] {
    margin-bottom: 3rem !important;
}

/* Saved Quizzes heading - friendlier font (Nunito), smaller and bold */
.saved-quizzes-heading[b-kh5bkkg7eb] {
    font-family: 'Nunito', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0;          /* friendlier, less condensed */
    line-height: 1.25;
    font-size: 1.125rem;        /* smaller */
    font-weight: 700;           /* bold */
    color: #0d1117;
    margin-bottom: 0.75rem;
    /* no centering */
}

/* Responsive tweaks (kept as before) */
@media (max-width: 768px) {
    .dynamic-title[b-kh5bkkg7eb] { font-size: 2rem; line-height: 1.2; }
    .hero-subtitle[b-kh5bkkg7eb] { font-size: 1rem; padding: 0 1rem; }
    .hero-header[b-kh5bkkg7eb] { padding: 1.5rem 0; }
    .quiz-card-modern[b-kh5bkkg7eb] { min-height: 220px; }
    .quiz-action-btn[b-kh5bkkg7eb] { font-size: 0.75rem; }
}

@media (max-width: 576px) {
    .quiz-card-modern[b-kh5bkkg7eb] { min-height: 200px; }
    .quiz-card-header[b-kh5bkkg7eb] { padding: 0.6rem 0.875rem; }
    .quiz-card-title[b-kh5bkkg7eb] { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .dynamic-title[b-kh5bkkg7eb] { font-size: 1.75rem; }
}

/* Apply Nunito to the hero header and subtitle */
.hero-header .dynamic-title[b-kh5bkkg7eb] {
    font-family: 'Nunito', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.hero-header .hero-subtitle[b-kh5bkkg7eb] {
    font-family: 'Nunito', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
/* _content/WiseUpDude/Components/Pages/LandingPage.razor.rz.scp.css */
/* Hero Section */
.hero-section[b-70b2oj7rs5] {
    text-align: center;
    padding: 50px 0; /* Smaller hero section */
}

    .hero-section h1[b-70b2oj7rs5] {
        font-size: 2.5rem; /* Adjusted size for smaller hero */
    }

    .hero-section p[b-70b2oj7rs5] {
        font-size: 1.2rem;
        color: #6c757d; /* Muted text color */
    }

/* Features Section */
.features-section[b-70b2oj7rs5] {
    padding-top: 40px;
    padding-bottom: 40px;
}

    .features-section h2[b-70b2oj7rs5] {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .features-section .card[b-70b2oj7rs5] {
        border-radius: 8px; /* Rounded corners for cards */
        transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; /* Smooth hover effects */
    }

        .features-section .card:hover[b-70b2oj7rs5] {
            transform: scale(1.05); /* Slight zoom on hover */
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Shadow effect on hover */
        }

        .features-section .card h5[b-70b2oj7rs5] {
            font-size: 1.25rem; /* Slightly larger card titles */
        }

        .features-section .card p[b-70b2oj7rs5] {
            font-size: 1rem; /* Standard text size for card descriptions */
        }

/* Call-to-action Section */
.cta-section[b-70b2oj7rs5] {
    background-color: #007bff; /* Primary blue background */
    color: white;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

    .cta-section h2[b-70b2oj7rs5] {
        font-size: 2rem;
    }

    .cta-section p[b-70b2oj7rs5] {
        font-size: 1.2rem;
    }
/* _content/WiseUpDude/Components/Pages/LearningTrackMaint.razor.rz.scp.css */
/* Highlight the active tab with a custom background and text color */
.nav-tabs .nav-link.active[b-qxfiq648gb],
.nav-pills .nav-link.active[b-qxfiq648gb] {
    background-color: #4f8cff !important; /* Soft blue */
    color: #fff !important;
    font-weight: bold;
    border-radius: 0.5rem 0.5rem 0 0;
    box-shadow: 0 2px 8px rgba(79,140,255,0.08);
}

/* Subtle blue background for the entire tab area */
.nav-tabs[b-qxfiq648gb] {
    background-color: #eaf2fb;
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 0.25rem 0.5rem;
    border-bottom: none;
    margin-bottom: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.nav-tabs.mb-3[b-qxfiq648gb] {
    margin-bottom: 0 !important;
}

.tab-content[b-qxfiq648gb] {
    background-color: #eaf2fb;
    border-radius: 0 0 0.5rem 0.5rem;
    padding: 1rem;
    border-top: none;
    margin-top: -1px; /* Collapse any gap caused by border or margin */
}

/* Remove border from tab-pane if present */
.tab-pane[b-qxfiq648gb] {
    border: none !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove margin from the card if used inside tab-content */
.tab-content > .card[b-qxfiq648gb],
.tab-content > .card-shadow-sm[b-qxfiq648gb] {
    margin-top: 0 !important;
}

/* Keep your existing .grid-background if you like it */
.grid-background[b-qxfiq648gb] {
    background-color: #f8f9fa; /* Bootstrap light */
    border-radius: 0.5rem;
    /* padding: 1rem; /* The list-group-flush removes need for padding on the container */
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.list-group-item.active .text-muted[b-qxfiq648gb] {
    color: rgba(255, 255, 255, 0.75) !important; /* Ensure muted text is readable on active background */
}

.list-group-item.active h5[b-qxfiq648gb] {
    color: #fff !important;
}

.action-buttons-list[b-qxfiq648gb] {
    display: flex;
    flex-direction: column; /* Stack buttons vertically on very small screens */
    align-items: flex-end; /* Align buttons to the right */
    white-space: nowrap;
}

    .action-buttons-list .btn[b-qxfiq648gb] {
        min-width: 80px; /* Ensure buttons have a decent tap target */
        font-size: 0.8rem; /* Slightly smaller text for compact buttons */
    }

        .action-buttons-list .btn .d-md-inline[b-qxfiq648gb] {
            margin-left: 0.25rem;
        }

/* On medium screens and up, make buttons horizontal */
@media (min-width: 768px) {
    .action-buttons-list[b-qxfiq648gb] {
        flex-direction: row; /* Align buttons horizontally */
    }

        .action-buttons-list .btn[b-qxfiq648gb] {
            margin-bottom: 0 !important; /* Remove bottom margin when horizontal */
        }

            .action-buttons-list .btn:not(:last-child)[b-qxfiq648gb] {
                margin-right: 0.5rem; /* Add some space between horizontal buttons */
            }
}

/* Adjustments for the overall list item content alignment */
.list-group-item .d-flex > div:first-child[b-qxfiq648gb] {
    flex-grow: 1; /* Allow text content to take available space */
}

/* Ensure icons are vertically aligned with text if needed */
.list-group-item h5 .bi[b-qxfiq648gb],
.list-group-item p .bi[b-qxfiq648gb] {
    vertical-align: middle;
    position: relative;
    top: -1px; /* Fine-tune alignment */
}
/* _content/WiseUpDude/Components/Pages/PickATopic.razor.rz.scp.css */
/* Pick A Topic Page Styling */

/* Page Container */
.page-container[b-hafcpj4xek] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Hero Section */
.hero-section[b-hafcpj4xek] {
    margin-bottom: 3rem;
}

.hero-emoji[b-hafcpj4xek] {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.hero-title[b-hafcpj4xek] {
    font-size: 2.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle[b-hafcpj4xek] {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Modern Category Filter Pills */
.category-filter-section[b-hafcpj4xek] {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.category-filter-pills[b-hafcpj4xek] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    max-width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-pill[b-hafcpj4xek] {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    background: #ffffff;
    color: #4285f4;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.category-pill:hover[b-hafcpj4xek] {
    background: #f1f5f9;
    border-color: #4285f4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.15);
    color: #4285f4;
}

.category-pill.active[b-hafcpj4xek] {
    background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%);
    color: white;
    border-color: #4285f4;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(66, 133, 244, 0.3);
}

/* Topics Grid */
.topics-grid[b-hafcpj4xek] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.topic-card-wrapper[b-hafcpj4xek] {
    display: flex;
}

.topic-card[b-hafcpj4xek] {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.topic-card:hover[b-hafcpj4xek] {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #4285f4;
}

.topic-card-body[b-hafcpj4xek] {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.topic-title[b-hafcpj4xek] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.topic-description[b-hafcpj4xek] {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.topic-card-footer[b-hafcpj4xek] {
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: center;
}

.topic-action-btn[b-hafcpj4xek] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.topic-action-btn:hover[b-hafcpj4xek] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
}

.topic-action-btn:active[b-hafcpj4xek] {
    transform: translateY(0);
}

.btn-text[b-hafcpj4xek] {
    font-weight: 600;
}

.btn-emoji[b-hafcpj4xek] {
    font-size: 1.1em;
}

/* Loading Overlay */
.generating-overlay[b-hafcpj4xek] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(2px);
}

.generating-content[b-hafcpj4xek] {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 300px;
}

/* Empty State */
.empty-state[b-hafcpj4xek] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    margin-top: 2rem;
}

.empty-state-content[b-hafcpj4xek] {
    text-align: center;
    max-width: 400px;
}

.empty-state-icon[b-hafcpj4xek] {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.empty-state-title[b-hafcpj4xek] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.empty-state-text[b-hafcpj4xek] {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
}

/* Legacy styles for backwards compatibility */
.display-4[b-hafcpj4xek] {
    font-size: 2.5rem;
    font-weight: 800;
}

.topic-card.card[b-hafcpj4xek] {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}

.topic-card .card-body[b-hafcpj4xek] {
    padding: 1.5rem;
}

.topic-card .card-footer[b-hafcpj4xek] {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 1rem 1.5rem;
}

.topic-card .btn-success[b-hafcpj4xek] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    transition: all 0.2s ease;
}

.topic-card .btn-success:hover[b-hafcpj4xek] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-container[b-hafcpj4xek] {
        padding: 1rem 0.5rem;
    }
    
    .hero-title[b-hafcpj4xek] {
        font-size: 2rem;
    }
    
    .hero-subtitle[b-hafcpj4xek] {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .category-filter-pills[b-hafcpj4xek] {
        gap: 0.5rem;
        padding: 0.75rem;
        margin: 0 0.5rem;
    }
    
    .category-pill[b-hafcpj4xek] {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .topics-grid[b-hafcpj4xek] {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 0 0.5rem;
    }
    
    .topic-card-body[b-hafcpj4xek] {
        padding: 1.25rem;
    }
    
    .topic-card-footer[b-hafcpj4xek] {
        padding: 0.75rem 1.25rem;
    }
    
    .topic-action-btn[b-hafcpj4xek] {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-emoji[b-hafcpj4xek] {
        font-size: 3rem;
    }
    
    .hero-title[b-hafcpj4xek] {
        font-size: 1.75rem;
    }
    
    .category-filter-pills[b-hafcpj4xek] {
        gap: 0.4rem;
        padding: 0.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .category-pill[b-hafcpj4xek] {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-width: 80px;
        text-align: center;
    }
    
    .topics-grid[b-hafcpj4xek] {
        gap: 0.75rem;
    }
    
    .topic-title[b-hafcpj4xek] {
        font-size: 1.1rem;
    }
    
    .topic-description[b-hafcpj4xek] {
        font-size: 0.9rem;
    }
}
/* _content/WiseUpDude/Components/Pages/SpecialPicks.razor.rz.scp.css */
/* Special Picks page styles */
.container[b-yy8x9ljc72] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.hero-header[b-yy8x9ljc72] {
    margin-bottom: 3rem;
}

.dynamic-title[b-yy8x9ljc72] {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
}

.hero-subtitle[b-yy8x9ljc72] {
    font-size: 1.125rem;
    color: #6c757d;
}

/* Shared centered shell for the page */
.specialpicks-shell[b-yy8x9ljc72]{ max-width: 980px; margin: 0 auto; padding: 0 1rem; }

/* Container and Layout */
.specialpicks-container[b-yy8x9ljc72] {
    min-height: 100vh;
    background: #f8f9fc;
    padding: 2rem 1rem;
}

/* Loading and empty states */
.specialpicks-loading[b-yy8x9ljc72],
.specialpicks-empty[b-yy8x9ljc72] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.specialpicks-empty-state[b-yy8x9ljc72] {
    text-align: center;
    padding: 3rem;
}

.specialpicks-empty-state i[b-yy8x9ljc72] {
    font-size: 3rem;
    display: block;
}

/* Hero Section */
.specialpicks-hero[b-yy8x9ljc72] {
    text-align: center;
    margin-bottom: 1.25rem;
    padding: 2rem 0;
}

.specialpicks-title[b-yy8x9ljc72] {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.1;
    color: #667eea;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.specialpicks-subtitle[b-yy8x9ljc72] {
    font-size: 1.1rem;
    font-weight: 400;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Toolbar */
.specialpicks-toolbar[b-yy8x9ljc72] {
    max-width: 1200px;
    margin: 0 auto 1rem auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.toolbar-left[b-yy8x9ljc72] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toolbar-right[b-yy8x9ljc72] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-input[b-yy8x9ljc72] {
    position: relative;
    min-width: 260px;
}

.search-input i[b-yy8x9ljc72] {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.search-input .form-control[b-yy8x9ljc72] {
    padding-left: 2rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.layout-toggle[b-yy8x9ljc72] {
    display: flex;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.toggle-btn[b-yy8x9ljc72] {
    background: transparent;
    border: none;
    padding: 0.5rem 0.75rem;
    color: #64748b;
    cursor: pointer;
}

.toggle-btn.active[b-yy8x9ljc72] {
    background: #2563eb;
    color: #fff;
}

.sort-select[b-yy8x9ljc72] {
    min-width: 140px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

/* Tab Navigation */
.specialpicks-tabs-container[b-yy8x9ljc72] {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: sticky;
    top: 64px;
    z-index: 5;
    padding: 0 1rem;
}

.specialpicks-tabs[b-yy8x9ljc72] {
    display: flex;
    position: relative;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.specialpicks-tab-btn[b-yy8x9ljc72] {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: #64748b;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    font-size: 0.95rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.specialpicks-tab-btn .chip-count[b-yy8x9ljc72] {
    background: #f1f5f9;
    color: #334155;
    font-size: 0.75rem;
    border-radius: 999px;
    padding: 0.1rem 0.5rem;
    font-weight: 600;
}

.specialpicks-tab-btn:hover:not(.active)[b-yy8x9ljc72] {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    transform: translateY(-1px);
}

.specialpicks-tab-btn.active[b-yy8x9ljc72] {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
    transform: translateY(-1px);
}

.specialpicks-tab-indicator[b-yy8x9ljc72] {
    position: absolute;
    bottom: 0.25rem;
    height: 3px;
    width: calc(100% / var(--tab-count, 1));
    background: #3b82f6;
    border-radius: 2px;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

/* Content Area */
.specialpicks-content[b-yy8x9ljc72] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.specialpicks-grid[b-yy8x9ljc72] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* Category grid */
.type-grid[b-yy8x9ljc72] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.type-card[b-yy8x9ljc72] {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}

.type-card:hover[b-yy8x9ljc72] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.type-thumb[b-yy8x9ljc72] {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.type-count[b-yy8x9ljc72] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.type-card-body[b-yy8x9ljc72] {
    padding: 1rem;
}

.type-title[b-yy8x9ljc72] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
}

/* Selected category header */
.selected-type-bar[b-yy8x9ljc72] {
    max-width: 1200px;
    margin: 0 auto 1rem auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.selected-type-meta[b-yy8x9ljc72] {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.count-pill[b-yy8x9ljc72] {
    background: #eef2ff;
    color: #4338ca;
    border-radius: 999px;
    padding: .2rem .6rem;
    font-weight: 700;
    font-size: .85rem;
}

.back-btn[b-yy8x9ljc72] {
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: .45rem .75rem;
    color: #334155;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.back-btn:hover[b-yy8x9ljc72] {
    background: #f1f5f9;
}

.tools[b-yy8x9ljc72] {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .5rem;
}

/* Updated quiz card styles to match home page */
.featured-quiz-card[b-yy8x9ljc72] {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 260px; /* Slightly reduced height */
}

.featured-quiz-card:hover[b-yy8x9ljc72] {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Header with quiz title - solid color, no gradient */
.featured-quiz-header[b-yy8x9ljc72] {
    background: #667eea;
    color: white;
    padding: 0.875rem 1.25rem;
    min-height: 50px; /* Reduced header height */
}

/* Quiz title in header - smaller size with Nunito */
.featured-quiz-title-header[b-yy8x9ljc72] {
    font-size: 0.9375rem; /* Reduced from 1.125rem */
    font-weight: 600;
    color: white;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    font-family: 'Nunito', system-ui, -apple-system, sans-serif;
}

/* Content area */
.featured-quiz-content[b-yy8x9ljc72] {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-quiz-description[b-yy8x9ljc72] {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

/* Footer toolbar */
.featured-quiz-footer[b-yy8x9ljc72] {
    padding: 0.875rem 1.25rem;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: center;
}

/* Smaller Take Quiz button - no gradient */
.featured-quiz-btn[b-yy8x9ljc72] {
    background: #667eea;
    color: white;
    border: none;
    padding: 0.375rem 1.5rem; /* Reduced padding */
    border-radius: 20px; /* Slightly less round */
    font-size: 0.8125rem; /* Reduced font size */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.featured-quiz-btn:hover[b-yy8x9ljc72] {
    background: #5a67d8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.featured-quiz-btn i[b-yy8x9ljc72] {
    font-size: 0.875rem; /* Smaller icon */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .specialpicks-grid[b-yy8x9ljc72] {
        grid-template-columns: 1fr;
    }
    
    .type-grid[b-yy8x9ljc72] {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .specialpicks-container[b-yy8x9ljc72] { padding: 0.75rem 0.5rem; }
    .type-card[b-yy8x9ljc72] { padding: 1.1rem; }
    .type-desc[b-yy8x9ljc72] { display: none; } /* simplify cards on mobile */
    .selected-type-bar[b-yy8x9ljc72] { gap: 0.5rem; }
    .tools[b-yy8x9ljc72] { width: 100%; justify-content: space-between; }
    .tools .search-input[b-yy8x9ljc72] { flex: 1 1 auto; min-width: 0; }
    .tools .sort-select[b-yy8x9ljc72] { flex: 0 0 42%; }
}

@media (max-width: 1024px) {
    .specialpicks-quizzes-scroll[b-yy8x9ljc72] {
        gap: 1rem;
        padding: 1rem 0.5rem 2rem 0.5rem;
    }
    
    .featured-quiz-card[b-yy8x9ljc72] {
        min-width: 280px;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .specialpicks-container[b-yy8x9ljc72] {
        padding: 1rem 0.75rem;
    }
    
    .specialpicks-title[b-yy8x9ljc72] {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .specialpicks-subtitle[b-yy8x9ljc72] {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .specialpicks-hero[b-yy8x9ljc72] {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }
    
    .specialpicks-tabs[b-yy8x9ljc72] {
        flex-wrap: wrap;
        gap: 0.25rem;
        padding: 0.375rem;
    }
    
    .specialpicks-tab-btn[b-yy8x9ljc72] {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .specialpicks-quizzes-scroll[b-yy8x9ljc72] {
        gap: 0.75rem;
        padding: 0.75rem 0 1.5rem 0;
    }
    
    .featured-quiz-card[b-yy8x9ljc72] {
        min-width: 260px;
        max-width: 260px;
        height: 240px; /* Smaller on mobile */
    }
    
    .featured-quiz-content[b-yy8x9ljc72] {
        padding: 1rem;
    }
    
    .featured-quiz-title-header[b-yy8x9ljc72] {
        font-size: 0.875rem; /* Even smaller on mobile */
    }
    
    .featured-quiz-btn[b-yy8x9ljc72] {
        padding: 0.375rem 1.25rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .specialpicks-title[b-yy8x9ljc72] {
        font-size: 1.75rem;
    }
    
    .specialpicks-subtitle[b-yy8x9ljc72] {
        font-size: 0.95rem;
    }
    
    .specialpicks-tabs[b-yy8x9ljc72] {
        justify-content: center;
        max-width: 100%;
    }
    
    .specialpicks-tab-btn[b-yy8x9ljc72] {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .specialpicks-tab-btn i[b-yy8x9ljc72] {
        display: none; /* Hide icons on very small screens */
    }
    
    .featured-quiz-card[b-yy8x9ljc72] {
        min-width: 240px;
        max-width: 240px;
    }
    
    .featured-quiz-content[b-yy8x9ljc72] {
        padding: 0.875rem;
    }
    
    .featured-quiz-title-header[b-yy8x9ljc72] {
        font-size: 0.8125rem;
    }
    
    .featured-quiz-description[b-yy8x9ljc72] {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }
    
    .featured-quiz-btn[b-yy8x9ljc72] {
        padding: 0.375rem 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .specialpicks-container[b-yy8x9ljc72] {
        padding: 0.75rem 0.5rem;
    }
    
    .featured-quiz-card[b-yy8x9ljc72] {
        min-width: 220px;
        max-width: 220px;
    }
    
    .featured-quiz-content[b-yy8x9ljc72] {
        padding: 0.75rem;
    }
    
    .specialpicks-tabs[b-yy8x9ljc72] {
        gap: 0.125rem;
        padding: 0.25rem;
    }
    
    .specialpicks-tab-btn[b-yy8x9ljc72] {
        padding: 0.375rem 0.625rem;
        font-size: 0.75rem;
    }
}

/* Compact card sizing tuned to the screenshot */
.type-grid[b-yy8x9ljc72] { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.type-card[b-yy8x9ljc72] { padding: .75rem; min-height: 120px; }
.type-thumb[b-yy8x9ljc72] { height: 120px; }
.type-title[b-yy8x9ljc72] { font-size: 1rem; }

/* Transparent count pill overlay (no white background) */
.type-thumb .type-count[b-yy8x9ljc72]{
  background: rgba(17, 24, 39, .35); /* translucent dark */
  color: #fff;
  border-radius: 999px;
  padding: .15rem .45rem;
  font-weight: 700;
  font-size: .75rem;
  backdrop-filter: blur(2px);
}

@media (max-width: 768px){
  .type-grid[b-yy8x9ljc72] { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: .75rem; }
  .type-thumb[b-yy8x9ljc72] { height: 110px; }
}

/* Add breathing room between hero / tools / grids */
.specialpicks-hero[b-yy8x9ljc72]{ margin-bottom: 1.25rem; }
.selected-type-bar[b-yy8x9ljc72]{ margin-bottom: .75rem; }
.type-grid[b-yy8x9ljc72]{ margin-top: .5rem; }
.specialpicks-grid[b-yy8x9ljc72]{ margin-top: .5rem; }

/* Tighten card vertical metrics slightly (smooched look) */
.featured-quiz-card[b-yy8x9ljc72]{ margin-bottom: .25rem; }
.type-card[b-yy8x9ljc72]{ margin-bottom: .25rem; }

/* Keep mobile comfortable */
@media (max-width: 768px){
  .specialpicks-shell[b-yy8x9ljc72]{ max-width: 640px; }
  .specialpicks-hero[b-yy8x9ljc72]{ margin-bottom: 1rem; }
  .selected-type-bar[b-yy8x9ljc72]{ margin-bottom: .5rem; }
}

/* Animations */
@keyframes fadeInUp-b-yy8x9ljc72 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.featured-quiz-card[b-yy8x9ljc72] {
    animation: fadeInUp-b-yy8x9ljc72 0.6s ease-out;
}

.featured-quiz-card:nth-child(1)[b-yy8x9ljc72] { animation-delay: 0.1s; }
.featured-quiz-card:nth-child(2)[b-yy8x9ljc72] { animation-delay: 0.2s; }
.featured-quiz-card:nth-child(3)[b-yy8x9ljc72] { animation-delay: 0.3s; }
.featured-quiz-card:nth-child(4)[b-yy8x9ljc72] { animation-delay: 0.4s; }
.featured-quiz-card:nth-child(5)[b-yy8x9ljc72] { animation-delay: 0.5s; }
.featured-quiz-card:nth-child(n+6)[b-yy8x9ljc72] { animation-delay: 0.6s; }

/* Focus states for accessibility */
.specialpicks-tab-btn:focus[b-yy8x9ljc72] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.featured-quiz-btn:focus[b-yy8x9ljc72] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Scrollbar styling for touch devices */
@supports (-webkit-overflow-scrolling: touch) {
    .specialpicks-quizzes-scroll[b-yy8x9ljc72] {
        -webkit-overflow-scrolling: touch;
    }
}

/* --- Match Home card sizing and spacing --- */

/* 3 cols desktop, 2 cols tablet, 1 col mobile (like col-lg-4/col-md-6) */
.specialpicks-grid[b-yy8x9ljc72] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;               /* more breathing room */
    padding: 0 0 2rem 0;
}

@media (max-width: 992px) {    /* ~Bootstrap lg breakpoint */
    .specialpicks-grid[b-yy8x9ljc72] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 576px) {    /* ~Bootstrap sm breakpoint */
    .specialpicks-grid[b-yy8x9ljc72] { grid-template-columns: 1fr; }
}

/* Make cards fill the grid cell like Home cards (no fixed width) */
.featured-quiz-card[b-yy8x9ljc72] {
    width: 100%;
    min-width: 0 !important;    /* override older fixed width */
    max-width: none !important; /* override older fixed width */
    min-height: 240px;          /* like .quiz-card-modern */
    border-radius: 12px;        /* match Home */
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin: 0;                  /* spacing now handled by grid gap */
}

/* Breadcrumb typography with smaller sizes */
.sp-breadcrumb[b-yy8x9ljc72] {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    flex-wrap: wrap;
}

.sp-breadcrumb .crumb-link[b-yy8x9ljc72] {
    background: transparent;
    border: 0;
    padding: 0;
    color: #0d6efd;
    text-decoration: underline;
    cursor: pointer;
    font-family: 'Nunito', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    font-size: 1.125rem;  /* Changed from 0.9375rem to match .crumb-current */
}
.sp-breadcrumb .crumb-link:hover[b-yy8x9ljc72] { color: #0b5ed7; }

.sp-breadcrumb .crumb-sep[b-yy8x9ljc72] {
    color: #94a3b8;
    user-select: none;
}

.sp-breadcrumb .crumb-current[b-yy8x9ljc72] {
    font-family: 'Nunito', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 1.125rem;  /* Reduced from 1.35rem */
    line-height: 1.3;
    color: #0d1117;
}

@media (max-width: 768px) {
    .sp-breadcrumb .crumb-link[b-yy8x9ljc72] { font-size: 1rem; }  /* Changed from 0.875rem */
    .sp-breadcrumb .crumb-current[b-yy8x9ljc72] { font-size: 1rem; }
}
/* _content/WiseUpDude/Components/Pages/UrlToQuiz.razor.rz.scp.css */
body[b-k1vvjvk331] {
}

/* Container centers the card and provides overall spacing */
.container[b-k1vvjvk331] {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    display: grid;
    place-items: center; /* Centers content horizontally and vertically */
}

/* Card groups the content with a subtle shadow and rounded borders */
.card[b-k1vvjvk331] {
    width: 100%;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Title styling */
.title[b-k1vvjvk331] {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #333;
}

/* Form group spacing */
.form-group[b-k1vvjvk331] {
    margin-bottom: 1.5rem;
}

/* Input and dropdown styling */
.form-control[b-k1vvjvk331] {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Button styling */
.btn[b-k1vvjvk331] {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .btn:hover[b-k1vvjvk331] {
        background-color: #0056b3;
    }
