/* Publication Link Styles */
.pub-link {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pub-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.journal-link {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
}

.journal-link:hover {
    color: #667eea;
    text-decoration: underline;
}

.pub-title-clickable {
    cursor: pointer;
    transition: color 0.3s ease;
}

.pub-title-clickable:hover {
    color: #667eea;
}

.info-btn {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.info-btn:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    color: #2d3748;
}

.publication-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.year {
    font-size: 0.875rem;
    color: #718096;
    margin: 0.25rem 0;
}

/* Admin remove button styles */
.remove-publication-btn {
    background: #fed7d7;
    border: 1px solid #feb2b2;
    color: #c53030;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.remove-publication-btn:hover {
    background: #feb2b2;
    border-color: #fc8181;
    color: #9b2c2c;
}

.item-selection {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.publication-checkbox {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}

.item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.item-title {
    flex: 1;
    font-weight: 600;
    color: #2d3748;
}

.item-actions {
    display: flex;
    gap: 0.5rem;
}

/* Bulk actions */
.section-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

#deleteSelectedBtn {
    background: #e53e3e;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

#deleteSelectedBtn:hover {
    background: #c53030;
}