/* Shared enhancement styles for HTML interview pages */
:root {
    --interview-accent: #e67e22;
    --interview-accent-2: #0d6efd;
    --interview-gradient: linear-gradient(135deg, #e67e22, #0d6efd);
}

.progress-indicator {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #e9ecef;
    z-index: 1000;
}

.progress-bar-custom {
    height: 100%;
    width: 0;
    background: var(--interview-gradient);
}

.main-content {
    border-left: 1px solid #eef2f7;
}

.qa-section {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.qa-section:hover {
    transform: translateY(-2px);
    border-color: rgba(230, 126, 34, 0.45);
    box-shadow: 0 10px 24px rgba(230, 126, 34, 0.12);
}

.question-number {
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.25);
}

.answer {
    background: #fbfdff;
    border-radius: 10px;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

.breadcrumb-custom .breadcrumb-item a {
    text-decoration: none;
}

.topic-badge {
    box-shadow: 0 8px 18px rgba(13, 110, 253, 0.2);
}

.qa-nav-btn {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.qa-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}
