/* Interview Coach Styles */
.interview-coach-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 24px;
    margin-bottom: 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    border-bottom: none;
}

.microphone-animation {
    width: 100px;
    height: 100px;
    position: relative;
    margin-bottom: 0.5rem;
}

.mic-icon {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.mic-icon i {
    font-size: 2.5rem;
    color: #3b82f6;
}

.mic-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #3b82f6;
    border-radius: 50%;
    animation: wave 2s infinite;
}

@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.mic-waves::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #3b82f6;
    border-radius: 50%;
    animation: wave 2s infinite 0.5s;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-align: center;
}

.hero-content p {
    font-size: 1.25rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
}

/* Setup Section */
.setup-section {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.setup-section > h3 {
    text-align: center;
    font-size: 2.25rem;
    color: #1e293b;
    margin: 1rem 0 2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.setup-section > h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #22c55e);
    border-radius: 2px;
}

.setup-container {
    max-width: 800px;
    margin: 0 auto;
}

.setup-container h3 {
    text-align: center;
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
}

/* Practice Tabs */
.practice-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab-button i {
    font-size: 1.25rem;
}

.tab-button:hover {
    background: #f1f5f9;
    border-color: #3b82f6;
    color: #3b82f6;
}

.tab-button.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Input Container */
.input-container {
    position: relative;
    background: #f8fafc;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.input-container:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.input-header {
    text-align: center;
    margin-bottom: 2rem;
}

.input-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.input-header h4::before {
    content: '\f15c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #3b82f6;
    font-size: 1.25rem;
}

.input-header p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.description-input {
    width: 100%;
    min-height: 180px;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-family: inherit;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    resize: vertical;
    transition: all 0.3s ease;
    background: white;
    line-height: 1.6;
}

.description-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.description-input::placeholder {
    color: #94a3b8;
    font-style: italic;
}

.character-counter {
    text-align: right;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.character-counter.warning {
    color: #f59e0b;
}

.character-counter.danger {
    color: #ef4444;
}

/* Quick Start Container */
.quick-start-container {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.quick-start-container:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

/* Search Container */
.search-container {
    margin-bottom: 2rem;
}

.search-input-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input-wrapper i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.1rem;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: white;
}

.search-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.search-input::placeholder {
    color: #94a3b8;
}

/* Job Categories */
.job-categories {
    margin-bottom: 1.5rem;
}

.job-categories h5 {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 500;
}

.category-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.category-btn {
    padding: 0.75rem 1.25rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    color: #64748b;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.category-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

/* Job Options Container */
.job-options-container {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 2rem;
    padding-right: 0.5rem;
}

.job-options-container::-webkit-scrollbar {
    width: 8px;
}

.job-options-container::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.job-options-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.job-options-container::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.job-options {
    display: grid;
    gap: 1rem;
}

.job-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.job-option:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.job-option.active {
    border-color: #3b82f6;
    background: #f0f9ff;
}

.job-option .type-icon {
    width: 48px;
    height: 48px;
    background: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.job-option .type-icon i {
    font-size: 1.25rem;
    color: white;
}

.job-option .type-content {
    flex: 1;
}

.job-option .type-content h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.job-option .type-content p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.4;
}

.job-option .check-icon {
    font-size: 1.25rem;
    color: #3b82f6;
    opacity: 0;
    transition: all 0.3s ease;
}

.job-option.active .check-icon {
    opacity: 1;
}

@media (max-width: 768px) {
    .quick-start-container {
        padding: 1.5rem;
    }

    .search-input {
        font-size: 1rem;
        padding: 0.875rem 0.875rem 0.875rem 2.75rem;
    }

    .category-buttons {
        gap: 0.5rem;
    }

    .category-btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    .job-option {
        padding: 1rem;
    }

    .job-option .type-icon {
        width: 40px;
        height: 40px;
    }

    .job-option .type-content h5 {
        font-size: 1rem;
    }

    .job-option .type-content p {
        font-size: 0.8125rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .interview-coach-container {
        padding: 1rem;
    }

    .hero-section {
        padding: 2rem 1.5rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .setup-section > h3 {
        font-size: 1.75rem;
    }

    .practice-tabs {
        flex-direction: column;
    }

    .tab-button {
        width: 100%;
        justify-content: center;
    }

    .input-container,
    .quick-start-container {
        padding: 1.5rem 1rem;
    }

    .interview-type-card {
        padding: 1rem;
    }

    .type-icon {
        width: 40px;
        height: 40px;
    }

    .type-content h5 {
        font-size: 1rem;
    }

    .microphone-animation {
        width: 80px;
        height: 80px;
    }

    .mic-icon i {
        font-size: 2rem;
    }
}

/* Keep existing header styles */
.main-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.header-left {
    text-align: center;
}

.header-left h1 {
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--color-text);
    margin: 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.3px;
}

.header-left p {
    color: #64748b;
    margin: 0.5rem 0 0;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Form Sections */
section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

section h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Practice Mode Section */
.mode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.mode-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mode-icon {
    width: 64px;
    height: 64px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #3b82f6;
}

.mode-card h4 {
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.mode-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.mode-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mode-btn:hover {
    background: #2563eb;
}

/* AI Practice Section */
.ai-practice-section {
    display: none;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1rem auto;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

/* Advanced Practice Header */
.practice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px 16px 0 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.practice-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.practice-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 2;
    padding-left: 0;
}

.practice-header h3::before {
    content: '';
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.practice-header h3::after {
    content: '\f075';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #ffffff;
    font-size: 1rem;
    position: absolute;
    left: 10px;
    z-index: 3;
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.close-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ffffff;
    transform: rotate(90deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
}

/* Advanced Timer Container */
.timer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.5rem 0;
}

/* Circular Timer Design */
.timer {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    box-shadow: 
        0 10px 25px rgba(102, 126, 234, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin: 0;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timer:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 35px rgba(102, 126, 234, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Timer Display */
.timer-display {
    position: relative;
    z-index: 2;
    color: #000000;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.timer-time {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.timer-label {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
}

/* Circular Progress Ring */
.timer-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 136px;
    height: 136px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #667eea 0deg,
        #764ba2 180deg,
        #667eea 360deg
    );
    padding: 2px;
    animation: rotate 20s linear infinite;
}

.timer-ring::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    z-index: -1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Pulse Animation for Active State - Removed flashing */
.timer.active {
    /* No pulsing animation - static appearance */
}

/* Timer Info and Tooltip */
.timer-info {
    position: relative;
    cursor: help;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.timer-info:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.timer-info i {
    color: #667eea;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.timer-info:hover i {
    color: #764ba2;
    transform: scale(1.1);
}

.timer-info-text {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.timer-info .tooltip {
    position: absolute;
    bottom: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    font-size: 0.8rem;
    border-radius: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.timer-info .tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #1e293b transparent transparent transparent;
}

.timer-info:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-4px);
}

/* Status Indicators */
.timer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.timer-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: statusPulse 2s ease-in-out infinite;
}

.timer-status-text {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

/* Advanced Response Area */
.response-area {
    margin-bottom: 1.5rem;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.response-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.response-input {
    width: 100%;
    min-height: 180px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.6;
    resize: vertical;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.response-input:focus {
    outline: none;
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 
        0 6px 20px rgba(102, 126, 234, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.response-input::placeholder {
    color: #94a3b8;
    font-style: italic;
}

.response-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 0;
    align-items: center;
}

.voice-toggle, .submit-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
}

.voice-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.voice-toggle:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15);
}

.voice-toggle.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
    animation: pulse 1.5s infinite;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.voice-toggle.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 10px;
    background: #3b82f6;
    opacity: 0.4;
    z-index: -1;
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    70% {
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.voice-toggle i {
    font-size: 1rem;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #5b6ff0 0%, #6b5bb5 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.submit-btn:disabled {
    background: linear-gradient(135deg, #94a3b8 0%, #a1a8b5 100%);
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(148, 163, 184, 0.2);
    opacity: 0.7;
}

.feedback-area {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Add gradient accent bar like setup-section */
.feedback-area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #22c55e);
    border-radius: 2px;
}

.feedback-content {
    display: grid;
    gap: 1.25rem;
}

.feedback-section {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    border: 2px solid #e2e8f0;
}

.feedback-section:first-child {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
}

.feedback-section:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.feedback-section h5 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
}

.feedback-section h5::before {
    content: '\f15c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1.25rem;
    color: #3b82f6;
}

#ai-feedback {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #374151;
    border-left: 3px solid #3b82f6;
    padding: 1.5rem;
    margin: 0;
    border-radius: 0 16px 16px 0;
    background: white;
    font-family: inherit;
    font-weight: 400;
    letter-spacing: 0.01em;
}

#key-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

#key-points li {
    font-size: 0.9rem;
    color: #374151;
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.75rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    line-height: 1.6;
    font-family: inherit;
    font-weight: 400;
    letter-spacing: 0.01em;
}

#key-points li:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

#key-points li i {
    font-size: 1.1rem;
    color: #3b82f6;
    background: #f0f9ff;
    padding: 0.75rem;
    border-radius: 8px;
    flex-shrink: 0;
}

.next-btn {
    width: 100%;
    background: #3b82f6;
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.next-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
}

.next-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.next-btn:hover::before {
    transform: translateX(100%);
}

.next-btn i {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.next-btn:hover i {
    transform: translateX(4px);
}

/* Question Bank Section */
.question-bank-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.bank-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.bank-content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.bank-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.bank-filters select {
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    min-width: 200px;
}

.questions-list {
    display: grid;
    gap: 1rem;
}

.question-card {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
}

.question-card h4 {
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.question-card p {
    color: #64748b;
    margin-bottom: 1rem;
}

.question-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

/* Error States */
.error {
    border-color: #ef4444 !important;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Success States */
.success {
    border-color: #22c55e !important;
}

.success-message {
    color: #22c55e;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.user-profile {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.user-profile:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

/* Features Section */
.features-section {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    width: 100%;
}

.features-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .features-section {
        padding: 2rem 1rem;
    }

    .features-section h3 {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .feature-icon i {
        font-size: 1.25rem;
    }

    .feature-card h4 {
        font-size: 1.125rem;
    }
}

/* Primary Button */
.primary-button {
    width: 100%;
    background: #3b82f6;
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.primary-button:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
}

.primary-button:hover::before {
    transform: translateX(100%);
}

.primary-button:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.primary-button span {
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.primary-button i {
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

/* Feedback Container Styles */
.feedback-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 100%;
    margin: 0;
}

.feedback-header {
    text-align: center;
    margin-bottom: 2rem;
}

.feedback-header h4 {
    font-size: 2.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 1rem 0 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.feedback-header h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #22c55e);
    border-radius: 2px;
}

.feedback-header p {
    color: #475569;
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.feedback-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feedback-analysis {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

.feedback-text p {
    color: #334155;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
}

.feedback-points {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

.feedback-points h5 {
    color: #1e293b;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.feedback-points ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feedback-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #334155;
    font-size: 1.15rem;
    line-height: 1.6;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 1.5rem;
}

.feedback-points li::before {
    content: "•";
    position: absolute;
    left: 0.75rem;
    color: #3b82f6;
    font-size: 1.5rem;
    line-height: 1;
}

.feedback-actions {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 2px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
}

.next-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.next-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

@media (max-width: 768px) {
    .feedback-container {
        padding: 1.25rem;
    }

    .feedback-header h4 {
        font-size: 1.5rem;
    }

    .feedback-analysis {
        padding: 1.25rem;
    }

    .feedback-text p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .feedback-points {
        padding: 1.25rem;
    }

    .feedback-points h5 {
        font-size: 1.25rem;
    }

    .feedback-points li {
        font-size: 1.1rem;
        padding: 0.625rem;
        padding-left: 1.25rem;
    }

    .feedback-points li::before {
        left: 0.5rem;
    }

    .next-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .question-display h4 {
        padding: 1rem 1rem 0.5rem;
        font-size: 0.7rem;
    }

    #current-question {
        padding: 0 1rem 1rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Advanced Question Display */
.question-display {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.question-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.speak-question-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #667eea;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 1rem;
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
}

.speak-question-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.speak-question-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.question-display h4 {
    color: #374151;
    margin: 0 0 1rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    background: none;
    border-radius: 0;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: normal;
    text-transform: none;
    opacity: 1;
}

.question-display h4::before {
    content: '';
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.25);
    position: relative;
}

.question-display h4::after {
    content: '\f059';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #ffffff;
    font-size: 0.875rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

#current-question {
    color: #374151;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    letter-spacing: 0.01em;
}

#current-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px 0 0 2px;
}

.feedback-section h5 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
}

.feedback-section h5::before {
    content: '\f15c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1.25rem;
    color: #3b82f6;
}

#key-points li.positive {
    border-left: 3px solid #22c55e;
}

#key-points li.positive i {
    color: #22c55e;
    background: #dcfce7;
}

#key-points li.negative {
    border-left: 3px solid #fbbf24;
}

#key-points li.negative i {
    color: #fbbf24;
    background: #fef3c7;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.toast {
    background: white;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 250px;
    max-width: 350px;
    animation: slideIn 0.2s ease-out;
    border-left: 3px solid #3b82f6;
}

.toast.success {
    border-left-color: #22c55e;
}

.toast.error {
    border-left-color: #ef4444;
}

.toast i {
    font-size: 1rem;
}

.toast.success i {
    color: #22c55e;
}

.toast.error i {
    color: #ef4444;
}

.toast-content {
    flex: 1;
}

.toast-content h4 {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
}

.toast-content p {
    margin: 0;
    font-size: 0.8125rem;
    color: #64748b;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    to {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
}

.toast.hide {
    animation: slideOut 0.2s ease-in forwards;
}

.scroll-arrow {
    display: none;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
    animation: bounce 2s infinite;
}

.scroll-arrow:hover {
    background: #2563eb;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

.scroll-arrow i {
    font-size: 1.25rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.voice-control {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.status-indicator {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #fee2e2;
    border-radius: 8px;
    color: #ef4444;
    font-size: 0.875rem;
    font-weight: 500;
    animation: fadeIn 0.2s ease;
}

.status-indicator i {
    font-size: 0.75rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.response-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    margin-top: 0.5rem;
    align-items: center;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.toast-close:hover {
    opacity: 1;
}

.toast.error .toast-close {
    color: var(--error-color);
}

.current-question-container {
    position: relative;
    width: 100%;
}

.interview-complete {
    text-align: center;
    padding: 2rem;
}

.completion-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.completion-header h4::before,
.completion-header h4::after {
    display: none;
}

.completion-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    flex: 1;
    min-width: 200px;
}

.secondary-button {
    background: white;
    color: #374151;
    border: 2px solid #e2e8f0;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.secondary-button:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .interview-complete {
        padding: 2rem 1rem;
    }

    .completion-actions {
        flex-direction: column;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
    }
}

/* Custom Confirmation Dialog */
.confirmation-overlay {
    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: 9999;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease;
}

.confirmation-dialog {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: slideIn 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.confirmation-dialog h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.confirmation-dialog p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.confirmation-btn {
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 100px;
}

.confirmation-btn.cancel {
    background: #f1f5f9;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.confirmation-btn.cancel:hover {
    background: #e2e8f0;
    color: #475569;
    transform: translateY(-1px);
}

.confirmation-btn.confirm {
    background: #ef4444;
    color: white;
    border: 2px solid #ef4444;
}

.confirmation-btn.confirm:hover {
    background: #dc2626;
    border-color: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .confirmation-dialog {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .confirmation-dialog h3 {
        font-size: 1.25rem;
    }
    
    .confirmation-dialog p {
        font-size: 0.95rem;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .confirmation-btn {
        width: 100%;
    }
}

/* Crown Icon Styling */
.primary-button .crown-icon {
    color: #ffd700;
    font-size: 12px !important;
    margin-left: 8px;
    display: none; /* Hidden by default, shown only for free users */
} 