/* ==========================================
   Interview Questions
========================================== */

.hz-question-hero {
    padding: 45px 0;
}

.hz-question-hero-inner {
    padding: 35px;
    border-radius: 20px;
    background: #f4f8ff;
}

.hz-question-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    font-size: 14px;
}

.hz-question-breadcrumb a {
    text-decoration: none;
}

.hz-question-breadcrumb i {
    font-size: 11px;
    color: #8b95a7;
}

.hz-question-hero h1 {
    margin: 10px 0;
    font-size: 40px;
    font-weight: 700;
}

.hz-question-hero p {
    max-width: 700px;
    margin: 0;
    color: #687386;
    line-height: 1.7;
}


/* Summary */

.hz-question-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
}

.hz-question-summary-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    font-size: 24px;
}

.hz-question-summary strong {
    display: block;
    font-size: 24px;
}

.hz-question-summary span {
    display: block;
    font-size: 13px;
    color: #6c757d;
}


/* Question Section */

.hz-question-section {
    padding: 50px 0;
}

.hz-question-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.hz-question-section-header h2 {
    margin: 6px 0 0;
    font-size: 28px;
}

.hz-question-count {
    white-space: nowrap;
    font-size: 14px;
    color: #6c757d;
}


/* Question Card */

.hz-question-card {
    padding: 25px;
    margin-bottom: 22px;

    border: 1px solid #e8ecf2;
    border-radius: 16px;

    background: #fff;
}

.hz-question-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
     width: 100%;
    margin-bottom: 18px;
}

.hz-question-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 45px;
    height: 30px;

    padding: 0 12px;

    border-radius: 20px;

    font-size: 13px;
    font-weight: 600;
}

.hz-difficulty {
    padding: 5px 10px;
    border-radius: 15px;

    font-size: 12px;
}


/* Question */

.hz-question-content h3 {
    margin: 0;

    font-size: 18px;
    line-height: 1.6;
}


/* Answer */

.hz-answer {
    margin-top: 22px;
    padding: 18px;

    border-radius: 12px;
}

.hz-answer-title,
.hz-explanation-title {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 10px;
}

.hz-answer-content {
    font-size: 15px;
    line-height: 1.75;
}


/* Explanation */

.hz-explanation {
    margin-top: 15px;
    padding: 18px;

    border-radius: 12px;
}

.hz-explanation p {
    margin: 0;

    font-size: 14px;
    line-height: 1.7;
}


/* Reference */

.hz-question-reference {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-top: 15px;

    font-size: 13px;
}


/* Sidebar */

.hz-question-sidebar {
    position: sticky;
    top: 90px;
}

.hz-sidebar-card {
    padding: 22px;
    margin-bottom: 20px;

    border: 1px solid #e8ecf2;
    border-radius: 16px;

    background: #fff;
}

.hz-sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 12px;
}

.hz-sidebar-title h4 {
    margin: 0;
    font-size: 17px;
}

.hz-sidebar-card p {
    margin: 0;

    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
}

.hz-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hz-sidebar-links a {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 9px 0;

    text-decoration: none;
    font-size: 14px;
}


/* Empty */

.hz-question-empty {
    padding: 60px 20px;

    text-align: center;

    border: 1px dashed #dce2eb;
    border-radius: 16px;
}

.hz-question-empty h3 {
    margin-top: 15px;
}

.hz-question-empty p {
    color: #6c757d;
}
 
 /* ==========================================
   Interview Pagination
========================================== */

.hz-pagination-wrapper {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #e9edf3;
}

.hz-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hz-page-numbers {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hz-page-number,
.hz-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 40px;

    border: 1px solid #e4e8ef;
    border-radius: 9px;

    background: #fff;

    color: #4f5968;
    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    transition: all 0.2s ease;
}

.hz-page-number {
    width: 40px;
}

.hz-page-btn {
    padding: 0 14px;
    gap: 7px;
}

.hz-page-number:hover,
.hz-page-btn:hover {
    border-color: #5465ff;
    color: #5465ff;
    background: #f7f8ff;
}

.hz-page-number.active {
    border-color: #5465ff;
    background: #5465ff;
    color: #fff;
    font-weight: 600;
}

.hz-page-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.hz-page-disabled:hover {
    border-color: #e4e8ef;
    color: #4f5968;
    background: #fff;
}


/* Mobile */

@media (max-width: 576px) {

    .hz-pagination {
        gap: 6px;
    }

    .hz-page-btn span {
        display: none;
    }

    .hz-page-btn {
        width: 40px;
        padding: 0;
    }

    .hz-page-numbers {
        gap: 4px;
    }

    .hz-page-number {
        width: 36px;
        height: 36px;
    }

}

/* Question List */
.hz-question-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* Question Card */
.hz-question-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
}


/* Question + Number + Difficulty */
.hz-question-main {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}


/* Q1 */
.hz-question-number {
    flex: 0 0 auto;

    min-width: 42px;
    height: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 10px;

    border-radius: 7px;

    background: #eef6ff;
    color: #0b67c2;

    font-size: 13px;
    font-weight: 700;
}


/* Question */
.hz-question-content {
    flex: 1;
    min-width: 0;
}

.hz-question-content h3 {
    margin: 4px 0 0;

    font-size: 17px;
    line-height: 1.55;

    color: #172033;
    font-weight: 600;
}


/* Difficulty */
.hz-difficulty {
    flex: 0 0 auto;

    padding: 5px 10px;

    border-radius: 20px;

    background: #f3f4f6;
    color: #667085;

    font-size: 12px;
    font-weight: 600;
}


/* Answer */
.hz-answer {
    margin-top: 18px;

    padding: 16px 18px;

    border-left: 4px solid #16a34a;

    background: #f6fff8;
    border-radius: 0 8px 8px 0;
}

.hz-answer-title {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 8px;

    color: #15803d;
    font-size: 14px;
}

.hz-answer-content {
    color: #344054;

    font-size: 15px;
    line-height: 1.7;
}

/* =========================================
   Explanation
   ========================================= */

.hz-explanation {
    margin-top: 16px;

    border: 1px solid #e4eaf1;
    border-radius: 10px;

    background: #f8fafc;

    overflow: hidden;
}


/* Explanation Header */

.hz-explanation-title {
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 13px 17px;

    background: #f4f7fb;

    color: #344054;

    font-size: 14px;
    font-weight: 600;

    list-style: none;
}

.hz-explanation-title::-webkit-details-marker {
    display: none;
}


.hz-explanation-title span {
    display: flex;
    align-items: center;
    gap: 9px;
}

.hz-explanation-title span i {
    color: #667085;
    font-size: 16px;
}


/* Arrow */

.hz-explanation-arrow {
    color: #98a2b3;

    transition: transform 0.2s ease;
}

.hz-explanation[open] .hz-explanation-arrow {
    transform: rotate(180deg);
}


/* =========================================
   Explanation Reading Area
   ========================================= */

.hz-explanation-content {
    max-width: 900px;

    padding: 20px 22px 22px;

    background: #ffffff;

    color: #475467;

    font-size: 15px;

    line-height: 1.85;

    letter-spacing: 0.01em;
}


/* Improve readability of long text */

.hz-explanation-content p {
    margin: 0 0 14px;
}

.hz-explanation-content p:last-child {
    margin-bottom: 0;
}


/* =========================================
   Code Section
   ========================================= */

.hz-code-section {
    margin: 4px 16px 16px;

    border: 1px solid #252b36;
    border-radius: 10px;

    overflow: hidden;

    background: #0d1117;
}


/* Code Header */

.hz-code-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 15px;

    background: #161b22;
    border-bottom: 1px solid #252b36;

    color: #c9d1d9;

    font-size: 13px;
    font-weight: 600;
}

.hz-code-title span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hz-code-title i {
    color: #8b949e;
}


/* Java label */

.hz-code-language {
    padding: 3px 8px;

    border-radius: 5px;

    background: #21262d;

    color: #8b949e;

    font-size: 11px;
    font-weight: 500;
}


/* Code */

.hz-code-section pre {
    margin: 0;

    padding: 18px 20px;

    background: #0d1117;

    overflow-x: auto;

    white-space: pre;
}

.hz-code-section code {
    display: block;

    font-family:
        "JetBrains Mono",
        "Fira Code",
        "Cascadia Code",
        "SFMono-Regular",
        Consolas,
        monospace;

    font-size: 13px;

    line-height: 1.7;

    color: #e6edf3;

    tab-size: 4;
}


/* =========================================
   Mobile
   ========================================= */

@media (max-width: 768px) {

    .hz-explanation-content {
        padding: 17px 16px 19px;

        font-size: 14px;

        line-height: 1.8;
    }

    .hz-code-section {
        margin-left: 12px;
        margin-right: 12px;
    }

    .hz-code-section pre {
        padding: 15px;
    }

}

.hz-question-tag-btn {
    flex: 0 0 auto;

    width: 32px;
    height: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    border-radius: 7px;

    background: transparent;

    color: #98a2b3;

    cursor: pointer;

    transition: all 0.2s ease;
}

.hz-question-tag-btn:hover {
    background: #eef6ff;
    color: #2f6f9f;
}


/* Question has tags */

.hz-question-tag-btn.has-tags {
    background: #eef6ff;
    color: #f11738;
}

.hz-question-tag-btn.has-tags i {
    color: #f11738;
}




/* =========================================================
   MY TAGGED QUESTIONS PAGE
   ========================================================= */

.hz-interview-page {
    padding: 24px 32px 50px;
}

/* =========================================================
   Breadcrumb
   ========================================================= */

.hz-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 22px;

    color: #98a2b3;
    font-size: 13px;
}

.hz-breadcrumb a {
    color: #667085;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hz-breadcrumb a:hover {
    color: #2563eb;
}

.hz-breadcrumb i {
    font-size: 10px;
}

.hz-breadcrumb span {
    color: #344054;
}


/* =========================================================
   Page Header
   ========================================================= */

.hz-tagged-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 26px;
    padding: 24px 26px;

    border: 1px solid #e4eaf1;
    border-radius: 14px;

    background: #ffffff;
}

.hz-tagged-header-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hz-tagged-header-icon {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eef6fa;
    color: #2f6f8f;

    font-size: 23px;
}

.hz-tagged-header h1 {
    margin: 0 0 5px;

    color: #1d2939;

    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.hz-tagged-header p {
    margin: 0;

    color: #667085;

    font-size: 14px;
    line-height: 1.6;
}


/* PDF */

.hz-pdf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 40px;

    padding: 0 16px;

    border: 1px solid #d5dce5;
    border-radius: 8px;

    background: #ffffff;
    color: #344054;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.2s ease;
}

.hz-pdf-btn:hover {
    border-color: #2f6f8f;
    background: #f5fafc;
    color: #2f6f8f;
}

.hz-pdf-btn i {
    font-size: 16px;
}


/* =========================================================
   Tag Summary
   ========================================================= */

.hz-tag-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 18px;
}

.hz-tag-summary-card {
    min-width: 150px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px 14px;

    border: 1px solid #e4eaf1;
    border-radius: 9px;

    background: #ffffff;

    cursor: pointer;

    transition: all 0.2s ease;
}

.hz-tag-summary-card:hover {
    border-color: #b8d2df;
    background: #f8fbfd;
}

.hz-tag-summary-card.active {
    border-color: #9fc4d5;
    background: #f1f8fb;
}

.hz-tag-summary-icon {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: #f2f4f7;
    color: #667085;
}

.hz-tag-summary-card.active .hz-tag-summary-icon {
    background: #e0f0f6;
    color: #2f6f8f;
}

.hz-tag-summary-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.hz-tag-summary-info span {
    color: #667085;
    font-size: 11px;
}

.hz-tag-summary-info strong {
    color: #344054;
    font-size: 14px;
}


/* Dynamic tag cards */

.hz-tag-summary-dynamic {
    display: contents;
}

.hz-tag-summary-dynamic .hz-tag-summary-card {
    min-width: auto;
}


/* =========================================================
   Toolbar
   ========================================================= */

.hz-tagged-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    margin-bottom: 14px;
}

.hz-tagged-search {
    position: relative;

    flex: 1;
}

.hz-tagged-search > i {
    position: absolute;

    left: 14px;
    top: 50%;

    transform: translateY(-50%);

    color: #98a2b3;

    font-size: 15px;
}

.hz-tagged-search input {
    width: 100%;
    height: 42px;

    padding: 0 15px 0 40px;

    border: 1px solid #dfe5ec;
    border-radius: 8px;

    outline: none;

    background: #ffffff;
    color: #344054;

    font-size: 13px;

    transition: all 0.2s ease;
}

.hz-tagged-search input::placeholder {
    color: #98a2b3;
}

.hz-tagged-search input:focus {
    border-color: #9fc4d5;

    box-shadow: 0 0 0 3px rgba(47, 111, 143, 0.08);
}


/* Filter */

.hz-filter-btn {
    height: 42px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 0 13px;

    border: 1px solid #dfe5ec;
    border-radius: 8px;

    background: #ffffff;
    color: #475467;

    font-size: 13px;

    cursor: pointer;
}

.hz-filter-btn:hover {
    border-color: #b8d2df;
    background: #f8fbfd;
}

.hz-filter-btn i:last-child {
    margin-left: 5px;
    font-size: 10px;
}


/* =========================================================
   Active Filter
   ========================================================= */

.hz-active-filter {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 16px;

    color: #667085;

    font-size: 12px;
}

.hz-active-filter-tag {
    padding: 4px 9px;

    border-radius: 20px;

    background: #eef6fa;
    color: #2f6f8f;

    font-size: 11px;
    font-weight: 600;
}

.hz-active-filter button {
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #f2f4f7;
    color: #667085;

    cursor: pointer;
}


/* =========================================================
   List Header
   ========================================================= */

.hz-tagged-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 12px;
}

.hz-tagged-list-header h2 {
    margin: 0 0 3px;

    color: #1d2939;

    font-size: 17px;
    font-weight: 650;
}

.hz-tagged-list-header span {
    color: #98a2b3;
    font-size: 12px;
}


/* =========================================================
   Tagged Question Card
   ========================================================= */

.hz-tagged-question-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.hz-tagged-question-card {
    padding: 19px 20px;

    border: 1px solid #e4eaf1;
    border-radius: 11px;

    background: #ffffff;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.hz-tagged-question-card:hover {
    border-color: #cbd9e2;

    box-shadow: 0 5px 18px rgba(16, 24, 40, 0.05);

    transform: translateY(-1px);
}


/* Card Header */

.hz-tagged-question-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 12px;
}

.hz-tagged-question-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 38px;
    height: 27px;

    padding: 0 9px;

    border-radius: 6px;

    background: #f2f6f8;
    color: #526b79;

    font-size: 12px;
    font-weight: 650;
}

.hz-tagged-question-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* Remove tag */

.hz-remove-tag-btn {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 7px;

    background: transparent;
    color: #2f6f8f;

    cursor: pointer;

    transition: all 0.2s ease;
}

.hz-remove-tag-btn:hover {
    background: #eef6fa;
    color: #245a75;
}


/* Question */

.hz-tagged-question-content h3 {
    margin: 0 0 13px;

    color: #1d2939;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.55;
}


/* =========================================================
   Topic
   ========================================================= */

.hz-tagged-question-topic {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 12px;

    color: #667085;

    font-size: 12px;
}

.hz-tagged-question-topic i:first-child {
    color: #98a2b3;
}

.hz-tagged-question-topic i:not(:first-child) {
    font-size: 9px;
    color: #c0c7d0;
}


/* =========================================================
   Tags
   ========================================================= */

.hz-question-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;

    margin-bottom: 15px;
}

.hz-question-tag {
    display: inline-flex;
    align-items: center;

    padding: 4px 9px;

    border: 1px solid #d9e9f0;
    border-radius: 20px;

    background: #f3f9fb;
    color: #39738e;

    font-size: 11px;
    font-weight: 550;
}


/* =========================================================
   Question Footer
   ========================================================= */

.hz-tagged-question-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 12px;

    border-top: 1px solid #f0f2f5;
}

.hz-tagged-question-status {
    display: flex;
    align-items: center;
    gap: 6px;

    color: #98a2b3;

    font-size: 11px;
}

.hz-tagged-question-status i {
    color: #6b9caf;
}

.hz-view-question {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #2f6f8f;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;
}

.hz-view-question:hover {
    color: #245a75;
}

.hz-view-question i {
    font-size: 12px;

    transition: transform 0.2s ease;
}

.hz-view-question:hover i {
    transform: translateX(3px);
}


/* =========================================================
   Sidebar
   ========================================================= */

.hz-tagged-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hz-sidebar-card {
    padding: 17px;

    border: 1px solid #e4eaf1;
    border-radius: 11px;

    background: #ffffff;
}

.hz-sidebar-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 15px;
}

.hz-sidebar-card-header h3 {
    margin: 0;

    color: #344054;

    font-size: 14px;
    font-weight: 650;
}

.hz-sidebar-card-header > i {
    color: #98a2b3;
    font-size: 15px;
}


/* Collection stats */

.hz-collection-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 0;

    border-top: 1px solid #f0f2f5;
}

.hz-collection-stat:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.hz-collection-stat span {
    color: #667085;
    font-size: 12px;
}

.hz-collection-stat strong {
    color: #344054;
    font-size: 15px;
}


/* Sidebar tags */

.hz-sidebar-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.hz-sidebar-tag {
    padding: 5px 9px;

    border-radius: 20px;

    background: #f3f9fb;
    color: #39738e;

    font-size: 11px;
    font-weight: 550;

    cursor: pointer;
}

.hz-sidebar-tag:hover {
    background: #e6f2f7;
}

.hz-sidebar-empty {
    color: #98a2b3;
    font-size: 12px;
}


/* Sidebar navigation */

.hz-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hz-sidebar-links a {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 9px 10px;

    border-radius: 7px;

    color: #667085;

    font-size: 12px;

    text-decoration: none;

    transition: all 0.2s ease;
}

.hz-sidebar-links a:hover {
    background: #f5f8fa;
    color: #2f6f8f;
}

.hz-sidebar-links a.active {
    background: #eef6fa;
    color: #2f6f8f;

    font-weight: 600;
}

.hz-sidebar-links a i {
    width: 16px;

    text-align: center;

    font-size: 14px;
}


/* =========================================================
   PDF Information Card
   ========================================================= */

.hz-pdf-info-card {
    padding: 18px;

    border: 1px solid #d9e9f0;
    border-radius: 11px;

    background: #f4fafc;
}

.hz-pdf-info-icon {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    border-radius: 8px;

    background: #e2f1f6;
    color: #39738e;
}

.hz-pdf-info-card h4 {
    margin: 0 0 6px;

    color: #344054;

    font-size: 14px;
    font-weight: 650;
}

.hz-pdf-info-card p {
    margin: 0 0 14px;

    color: #667085;

    font-size: 11px;
    line-height: 1.65;
}

.hz-pdf-info-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 0;

    border: 0;

    background: transparent;
    color: #2f6f8f;

    font-size: 12px;
    font-weight: 650;

    cursor: pointer;
}

.hz-pdf-info-btn:hover {
    color: #245a75;
}


/* =========================================================
   Empty State
   ========================================================= */

.hz-tagged-empty {
    padding: 55px 25px;

    border: 1px dashed #d8e0e8;
    border-radius: 12px;

    background: #ffffff;

    text-align: center;
}

.hz-tagged-empty-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 15px;

    border-radius: 50%;

    background: #f2f7f9;
    color: #7c9eac;

    font-size: 22px;
}

.hz-tagged-empty h3 {
    margin: 0 0 7px;

    color: #344054;

    font-size: 17px;
    font-weight: 650;
}

.hz-tagged-empty p {
    max-width: 460px;

    margin: 0 auto 20px;

    color: #667085;

    font-size: 13px;
    line-height: 1.7;
}

.hz-empty-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 9px 14px;

    border: 1px solid #d5e5eb;
    border-radius: 8px;

    background: #f7fbfc;
    color: #39738e;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;
}

.hz-empty-action:hover {
    background: #eef6fa;
    color: #2f6f8f;
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 991px) {

    .hz-tagged-header {
        align-items: flex-start;
    }

    .hz-tagged-sidebar {
        margin-top: 5px;
    }

}


@media (max-width: 767px) {

    .hz-interview-page {
        padding-top: 15px;
    }

    .hz-tagged-header {
        flex-direction: column;
        padding: 19px;
    }

    .hz-tagged-header-content {
        align-items: flex-start;
    }

    .hz-tagged-header h1 {
        font-size: 21px;
    }

    .hz-tagged-header p {
        font-size: 13px;
    }

    .hz-tagged-header-actions {
        width: 100%;
    }

    .hz-pdf-btn {
        width: 100%;
    }

    .hz-tag-summary {
        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 4px;
    }

    .hz-tag-summary-card {
        flex: 0 0 auto;
    }

    .hz-tagged-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .hz-tagged-question-card {
        padding: 16px;
    }

    .hz-tagged-question-content h3 {
        font-size: 15px;
    }

    .hz-tagged-question-footer {
        align-items: flex-start;
        gap: 10px;
    }

}

@media (max-width: 991px) {

    .hz-interview-page {
        padding: 20px 24px 40px;
    }

}

@media (max-width: 767px) {

    .hz-interview-page {
        padding: 15px 16px 35px;
    }

}

/* =========================================================
   Tagged Questions Loader
   ========================================================= */

.hz-tagged-loader {
    min-height: 220px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: 1px solid #e4eaf1;
    border-radius: 11px;

    background: #ffffff;

    color: #98a2b3;

    font-size: 12px;
}


/* Spinner */

.hz-loader-spinner {
    width: 28px;
    height: 28px;

    border: 3px solid #e8eef2;
    border-top-color: #39738e;

    border-radius: 50%;

    animation: hzLoaderSpin 0.75s linear infinite;
}


@keyframes hzLoaderSpin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

.hz-question-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;

    width: 100%;

    margin: 12px 0 16px;
}

.hz-question-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    padding: 5px 10px;

    border: 1px solid #d9e9f0;
    border-radius: 20px;

    background: #f3f9fb;
    color: #39738e;

    font-size: 11px;
    font-weight: 600;

    line-height: 1.2;

    white-space: nowrap;
}
.hz-question-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
}
.hz-tag-filter-wrapper {
    position: relative;
}

.hz-tag-filter-dropdown {
    position: absolute;

    top: calc(100% + 6px);
    right: 0;

    z-index: 100;

    min-width: 190px;

    max-height: 280px;

    overflow-y: auto;

    padding: 6px;

    border: 1px solid #e4e7ec;
    border-radius: 9px;

    background: #ffffff;

    box-shadow:
        0 8px 20px rgba(16, 24, 40, 0.10);

    display: none;
}

.hz-tag-filter-dropdown.show {
    display: block;
}

.hz-tag-filter-option {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 9px 10px;

    border: 0;
    border-radius: 6px;

    background: transparent;

    color: #475467;

    font-size: 12px;

    text-align: left;

    cursor: pointer;
}

.hz-tag-filter-option:hover {
    background: #f5f8fa;
    color: #39738e;
}

.hz-tag-filter-option.active {
    background: #eef6fa;
    color: #39738e;

    font-weight: 600;
}

.hz-tag-filter-option i {
    width: 15px;
}

.hz-question-tag-popup {
    position: absolute;

    z-index: 99999;

    width: 220px;

    padding: 10px;

    background: #ffffff;

    border: 1px solid #e4e7ec;
    border-radius: 10px;

    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.15);
}

.hz-popup-tag-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 4px 4px 9px;

    border-bottom: 1px solid #f0f2f5;

    color: #344054;

    font-size: 13px;
}

.hz-popup-close {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 5px;

    background: transparent;

    color: #98a2b3;

    cursor: pointer;
}

.hz-popup-close:hover {
    background: #f2f4f7;
    color: #344054;
}

.hz-popup-tag-list {
    display: flex;
    flex-direction: column;

    gap: 3px;

    margin-top: 7px;
}

.hz-popup-tag-option {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 8px 9px;

    border: 0;
    border-radius: 6px;

    background: transparent;

    color: #475467;

    font-size: 12px;

    text-align: left;

    cursor: pointer;
}

.hz-popup-tag-option:hover {
    background: #eef6fa;
    color: #39738e;
}

.hz-popup-tag-option i {
    color: #98a2b3;
}

.hz-create-tag-btn {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 8px;
    padding: 8px 9px;

    border: 0;
    border-top: 1px solid #f0f2f5;

    background: transparent;

    color: #39738e;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;
}

.hz-create-tag-btn:hover {
    color: #245a75;
}