.pkp_site_name > a {
    padding-top: 0px;
    padding-bottom: 0px;
}

.pkp_site_name {
    padding-top: 0px;
    padding-bottom: 0px;
}

.pkp_site_name_wrapper {
    padding-left: 0px;
    padding-right: 0px;
}

.pkp_site_name .is_img img {
    display: block;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    margin-bottom: -6px;
}

/* Fixed the missing opening bracket here */
.pkp_nav_list {
    padding-top: 80px;
}

.pkp_navigation_user {
    padding-top: 0px;
}

.pkp_footer_content {
    float: left;
    width: 70%;
    padding-top: 10px;
    padding-bottom: 10px
}

.pkp_brand_footer {
    float: right;
    width: 30%;
    padding-top: 10px;
    padding-bottom: 10px
}

/* NEW ADDITION: Resize User/Registration Font */
.pkp_navigation_user a {
    font-size: 16px; /* Adjust 14px, 16px, 18px, etc. */
}

/* Styling the individual article containers into cards */
.obj_article_summary {
    border: 1px solid #7ebade; /* The light blue border from your image */
    border-radius: 8px;        /* Rounded corners */
    padding: 20px;             /* Space inside the card */
    margin-bottom: 25px;       /* Space between cards */
    background-color: #e9ecef; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Optional: subtle shadow for depth */
    transition: transform 0.2s ease; /* Smooth effect if you want a hover lift */
}

/* Optional: Slight lift effect when hovering over the card */
.obj_article_summary:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Adjusting the PDF button to match the image style */
.obj_article_summary .btn.pdf {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 4px;
    padding: 6px 12px;
}