#publications-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.publication {
    display: flex;
    justify-content: space-between;  /* Align items at opposite ends */
    align-items: center;  /* Vertically align items */
    border: 1px solid #ccc;
    padding: 20px;
    width: 70%;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;  /* Remove underline from anchor */
    color: inherit;  /* Inherit text color */
}

.publication p {
    font-size: 14px;
    margin: 0;  /* Remove bottom margin */
    flex: 1;  /* Allow the paragraph to take up remaining space */
}

.download-btn {
    padding: 8px 16px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-left: 20px;
}

.download-btn:hover {
    background-color: #4CAF50;
}

.publication.link_available:hover {
    background-color: #f1f1f1;  /* Change background color on hover */
    cursor: pointer;
}

