@charset "utf-8";
/* ***********************************************************************
 *
 *  File:   local_who.css
 *
 *  Brief:  Styles for the Who is Who and Studies pages.
 *
 *  Author: Jomar Hønsi, 2026
 *
 * ************************************************************************/

/* Navigation bar for articles */
div.art-bar {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

a.art-bar, a.art-bar-sel {
  background-color: var(--bg-nav);
  border: 1px solid #3a5080;
  text-decoration: none;
  padding: 5px 8px;
  color: var(--fg-nav);
  margin: 2px;
  font-size: 12px;
  width: 16%;
  border-radius: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.15s;
}

a.art-bar-sel {
  background-color: #e8ecf5;
  color: #1a2a5e;
  border-color: #4a6fa5;
}

a.art-bar:hover {
  background-color: #e0e8f5;
  color: #1a2a5e;
}