/* Comprehensive 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;
}

/* BPD Type Cards */
.bpd-type-card {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #6a5acd;
}

.bpd-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.bpd-type-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.bpd-type-icon i {
    font-size: 1.5rem;
    color: #6a5acd;
}

.bpd-type-card h4 {
    color: #6a5acd;
    margin-bottom: 1rem;
}

.bpd-type-card ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 1rem;
}

.bpd-type-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.bpd-type-card ul li:before {
    content: '•';
    color: #6a5acd;
    position: absolute;
    left: 0;
}

/* DSM-5 Criteria Table */
.dsm-criteria-table {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.dsm-criteria-table thead {
    background-color: #6a5acd;
    color: white;
}

.dsm-criteria-table th {
    font-weight: 600;
    padding: 1rem;
}

.dsm-criteria-table td {
    padding: 1rem;
    vertical-align: middle;
}

.dsm-criteria-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Testimonials */
.testimonials {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin: 3rem 0;
    border-radius: 10px;
}

.testimonial-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-left: 4px solid #6a5acd;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card .author {
    font-weight: bold;
    color: #6a5acd;
}

.testimonial-rating {
    color: #ffc107;
    margin-top: 0.5rem;
}

/* Start Test Card */
.start-test-card {
    background: linear-gradient(135deg, #f0f0ff 0%, #e6e6fa 100%);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.2);
    border: 1px solid #d8d8f0;
}

.feature-list {
    list-style-type: none;
    padding-left: 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 Accordion */
.accordion-item {
    border: 1px solid #e9ecef;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: #f8f9fa;
    color: #6a5acd;
    font-weight: 600;
    padding: 1.25rem;
}

.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);
}

.accordion-body {
    padding: 1.5rem;
    background-color: white;
}

/* Disclaimer Box */
.disclaimer-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    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;
    }
    
    .bpd-type-card {
        margin-bottom: 1.5rem;
    }
    
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .start-test-card {
        text-align: center;
    }
    
    .start-test-card .btn {
        margin-top: 1.5rem;
    }
} 