/* Remove bullet points from list */
li {
    list-style: none;
    margin-bottom: 10px;
}

/* Style the journal links as buttons */
li a[href*="viewJournal"], 
li a[href*="currentIssue"] {
    display: inline-block;
    background-color: #2563eb; /* blue-600 */
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

/* Hover and active button effects */
li a[href*="viewJournal"]:hover,
li a[href*="currentIssue"]:hover {
    background-color: #1e40af; /* darker blue */
    transform: translateY(-2px);
}

/* Optional: focus style for accessibility */
li a[href*="viewJournal"]:focus,
li a[href*="currentIssue"]:focus {
    outline: 3px solid #93c5fd; /* light blue ring */
    outline-offset: 2px;
}
