.entry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.entry-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.entry-card {
    background: #f9fafb;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.entry-list .entry-card {
    width: calc(100% - 32px);
    max-width: 952px;
    margin: 0 auto;
}

.entry-card:hover {
    transform: translateY(-4px);
}

.entry-card .content {
    padding-right: 48px;
}

.entry-card .id-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #1e40af;
    margin: 0;
}

.entry-card .card-actions-top {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    gap: 8px;
}

.entry-card .card-actions-bottom {
    position: absolute;
    bottom: 8px;
    right: 8px;
    display: flex;
    gap: 8px;
}

.entry-card p {
    margin: 4px 0;
    font-size: 14px;
    color: #4b5563;
    word-wrap: break-word;
}

.entry-card .custom-field {
    margin-top: 12px;
}

.entry-card a {
    color: #3b82f6;
    text-decoration: none;
}

.entry-card a:hover {
    text-decoration: underline;
}

.entry-card .download-icon {
    font-size: 24px;
    color: #3b82f6;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.entry-card .edit-btn, .entry-card .copy-btn {
    font-size: 18px;
    color: #1e40af;
    cursor: pointer;
    transition: color 0.3s;
}

.entry-card .edit-btn:hover, .entry-card .copy-btn:hover {
    color: #3b82f6;
}

.entry-card strong {
    font-weight: 700; /* Ensure bold labels for DOI, Vol, pp */
}

.entry-card.in-press {
    background: #ffa6005d; /* Light blue for in press cards */
}