/* Feedback Page Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.navbar {
    background-color: #0d6efd;
    padding: 1rem;
}

.navbar-brand, .navbar-nav .nav-link {
    color: white !important;
}

.navbar-nav .nav-link.active {
    font-weight: bold;
    text-decoration: underline;
}

.hero {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #0d6efd;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0d6efd;
}

.feedback-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.strength-item, .improvement-item {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid;
}

.strength-item {
    border-color: #198754;
}

.improvement-item {
    border-color: #dc3545;
}

.strength-item h5, .improvement-item h5 {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.strength-item h5 i {
    color: #198754;
}

.improvement-item h5 i {
    color: #dc3545;
}

.question-card, .exercise-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.question-header, .exercise-header {
    background-color: #f8f9fa;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.question-body, .exercise-body {
    padding: 1.5rem;
}

.analysis-section, .suggestion-section {
    margin-bottom: 1.5rem;
}

.analysis-section h5, .suggestion-section h5 {
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.checklist-item {
    display: flex;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.checklist-icon {
    margin-right: 1rem;
    font-size: 1.2rem;
    color: #0d6efd;
}

.footer {
    background-color: #343a40;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.social-icon {
    color: white;
    font-size: 1.5rem;
    margin: 0 0.5rem;
}

.practice-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0d6efd;
    color: white;
    border: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.practice-btn:hover {
    background-color: #0a58ca;
}

.timer-container {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin: 1rem 0;
    color: #0d6efd;
}

.recording-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #dc3545;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

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

.practice-modal .modal-dialog {
    max-width: 800px;
}

.interview-feedback-menu {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.interview-feedback-menu h3 {
    color: #0d6efd;
    margin-bottom: 1.5rem;
    text-align: center;
}

.interview-feedback-menu .nav-pills .nav-link {
    color: #495057;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    padding: 0.75rem 1rem;
}

.interview-feedback-menu .nav-pills .nav-link.active {
    background-color: #0d6efd;
    color: white;
}

.interview-feedback-menu .nav-pills .nav-link:hover:not(.active) {
    background-color: #e9ecef;
}

.interview-feedback-menu .nav-pills .nav-link i {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }
    
    .feedback-card, .question-card, .exercise-card {
        padding: 1.5rem;
    }
    
    .practice-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
}
