
/* Paper Summary Styles */
.key-terms,
.key-findings {
    list-style-type: none;
    padding-left: 0;
}

.key-terms li,
.key-findings li {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    position: relative;
}

.key-terms li::before,
.key-findings li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.key-terms li ul {
    margin-top: 1rem;
    margin-left: 1.5rem;
    list-style-type: disc;
}

.key-terms li ul li {
    margin-bottom: 1rem;
    padding-left: 0;
}

.key-terms li ul li::before {
    display: none;
}

.term-link {
    text-decoration: underline #ff0000;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.term-link:hover {
    background-color: rgba(255, 0, 0, 0.1);
}

.term-highlight {
    background-color: rgba(255, 0, 0, 0.2);
    transition: background-color 0.5s ease;
    padding: 0.5rem;
    border-radius: 4px;
}

.image-finding {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin: 2.5rem 0;
}

.finding-content {
    flex: 1;
    padding-right: 2rem;
}

.finding-image {
    flex: 1;
}

.finding-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
}

.finding-table {
    margin: 2rem 0;
}

.finding-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    border: 1px solid #000;
}

.finding-table th,
.finding-table td {
    padding: 1.25rem;
    border: 1px solid #000;
    text-align: left;
}

.iap-column {
    width: 25%;
}

.notes-column {
    width: 75%;
}

.finding-table th {
    background-color: #fff;
    color: var(--primary-color);
    font-weight: 600;
}

.notes-list {
    list-style-type: disc;
    margin: 0;
    padding-left: 1.5rem;
}

.notes-list li {
    margin-bottom: 0.5rem;
    list-style-type: none;
    position: relative;
}

.notes-list li::before {
    content: "•";
    position: absolute;
    left: -1.5rem;
    color: var(--primary-color);
}

.notes-list li:last-child {
    margin-bottom: 0;
}