/* Performance Documents - Frontend Styles */

.pd-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Fund Block - separates each fund */
.pd-fund-block {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.pd-fund-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Main Title - Smaller, Colored, and Left Aligned */
.pd-main-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 30px 0;
    padding: 0 0 15px 0;
    color: #2cbc63;
    text-align: left;
    border-bottom: 2px solid #e0e0e0;
}

/* Section Headers */
.pd-section {
    margin-bottom: 20px;
}

.pd-section-header,
.pd-subsection-header,
.pd-doc-type-header,
.pd-year-header {
    cursor: pointer;
    padding: 12px 15px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s;
}

.pd-section-header:hover,
.pd-subsection-header:hover,
.pd-doc-type-header:hover,
.pd-year-header:hover {
    background-color: #e9e9e9;
}

.pd-toggle-icon {
    font-size: 12px;
    color: #666;
    transition: transform 0.2s;
}

.pd-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.pd-subsection-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.pd-doc-type-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.pd-year-title {
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

/* Content Areas */
.pd-section-content,
.pd-subsection-content,
.pd-doc-type-content,
.pd-year-content {
    padding: 15px 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 4px 4px;
    display: none; /* Default hidden */
}

/* Document Lists - No numbering */
.pd-document-list,
.pd-quarter-list,
.pd-year-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.pd-document-list li,
.pd-quarter-list li,
.pd-year-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pd-document-list li:last-child,
.pd-quarter-list li:last-child,
.pd-year-list li:last-child {
    border-bottom: none;
}

.pd-document-link {
    color: #2cbc63 !important;
    text-decoration: none !important;
    font-size: 18px !important;
    transition: color 0.2s;
}

.pd-document-link:hover {
    color: #238a4f;
    text-decoration: underline;
}

/* Subsection and Doc Type Styling */
.pd-subsection {
    margin-left: 20px;
    margin-top: 15px;
}

.pd-doc-type {
    margin-left: 20px;
    margin-top: 10px;
}

.pd-year-group {
    margin-left: 20px;
    margin-top: 10px;
}

.pd-no-docs {
    color: #999;
    font-style: italic;
    padding: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pd-main-title {
        font-size: 20px;
    }
    
    .pd-section-title {
        font-size: 16px;
    }
    
    .pd-subsection-title {
        font-size: 15px;
    }
    
    .pd-subsection,
    .pd-doc-type,
    .pd-year-group {
        margin-left: 10px;
    }
}
