/* Quick BPD Test Page Styles */

/* Test Header */
.test-header {
    background: linear-gradient(135deg, #6a5acd 0%, #9370db 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.3);
}

/* Breadcrumb Styling */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.breadcrumb-item a {
    color: #6a5acd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #9370db;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Test Info Card */
.test-info-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-left: 4px solid #6a5acd;
}

.test-info-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.test-info-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.test-info-list li:before {
    content: '✓';
    color: #6a5acd;
    position: absolute;
    left: 0;
}

/* Expert Credentials */
.expert-credentials {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.credentials-box {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.credential-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.credential-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.credential-item i {
    color: #6a5acd;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.credential-item h5 {
    margin-bottom: 0.5rem;
    color: #6a5acd;
}

/* Symptoms Table */
.symptoms-table {
    margin: 2rem 0;
}

.symptoms-table h3 {
    color: #6a5acd;
    margin-bottom: 1.5rem;
}

.symptoms-table .table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.symptoms-table th {
    background-color: #6a5acd;
    color: white;
    font-weight: 600;
}

.symptoms-table td {
    vertical-align: middle;
}

/* Start Test Card */
.start-test-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.1);
    margin-top: 2rem;
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.feature-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: '✓';
    color: #6a5acd;
    position: absolute;
    left: 0;
}

/* FAQ Section */
.accordion {
    margin-top: 2rem;
}

.accordion-button {
    font-weight: 600;
    color: #6a5acd;
}

.accordion-button:not(.collapsed) {
    background-color: #f0f0ff;
    color: #6a5acd;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(106, 90, 205, 0.25);
}

/* Disclaimer Box */
.disclaimer-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.disclaimer-box h4 {
    color: #856404;
    margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .test-header {
        padding: 2rem 0;
    }
    
    .test-header h1 {
        font-size: 1.75rem;
    }
    
    .credentials-box {
        margin-bottom: 1rem;
    }
    
    .start-test-card {
        text-align: center;
        padding: 1.5rem;
    }
    
    .start-test-card .row {
        flex-direction: column;
    }
    
    .start-test-card .col-md-4 {
        margin-top: 1.5rem;
        order: -1; /* Move the button to the top */
    }
    
    .start-test-card .col-md-8 {
        margin-top: 1.5rem;
    }
    
    .start-test-card .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
} 