/*
 * Component library CSS for admin tools
 * Theming for UI elements provided by Drupal
 * Includes tabs, messages etc.
 */

.tabs {
  font-size: 1.1em;
  border-bottom: 1px solid #ccc;
  list-style: none;
  margin: 1rem 0;
  display: flex;
  & a {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border: 1px solid #ccc;
    border-bottom: none;

    color: #424242;
    font-size: 0.9em;
    line-height: 1.4em;
    text-decoration: none;

    display: block;
    padding: 0.3em 0.9em;

    &.is-active {
      background: rgba(0, 0, 0, 0.1);
    }

    &:is(:hover, :focus) {
      background: rgba(0, 0, 0, 0.2);
      color: rgba(0, 0, 0, 0.6);
    }
  }
}

li.action-links {
  margin-bottom: 1.5em;
}
