.custom-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.pac-btn {
    padding: 6px 12px;
    background: #0073aa;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    margin-right: 8px;
}

.pac-btn:hover {
    background: #005f8d;
}

.pac-box {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.article-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px auto;
    max-width: 900px;
}

.article-card {
    display: flex;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 24px;
}

.article-index {
    font-size: 20px;
    font-weight: bold;
    color: #1c0ca4;
    margin-right: 20px;
}

.article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.field {
    display: flex;
    flex-wrap: wrap;
}

.label {
    font-weight: bold;
    min-width: 100px;
}

.value.title {
    font-weight: 600;
    font-size: 17px;
}

.pdf-link {
    display: inline-flex;
    align-items: center;
    color: #007bff;
    text-decoration: none;
}

.pdf-icon {
    width: 22px;
    margin-right: 8px;
}

.pac-copy-btn {
    margin-top: 8px;
    background: #28a745;
}

.pac-copy-btn:hover {
    background: #218838;
}