html {
      font-family: sans-serif;
}

.labeldiv {
      text-align: center;
      padding: 4px;
      display: inline-block;
      border: 2px solid transparent;
      border-radius: 6px;
      user-select: none;
      cursor: pointer;
      width: 3vmin;
}

.labeldiv:hover {
      background: #ddf;
}

.labelbox {
      display: flex;
      align-items: center;
}

.labeldiv_selected {
      border: 2px solid #000000;
      background: #aaf;
}

tr:nth-child(odd) {
      background-color: #f0f0ff;
}

/* Apply this style to even rows */
tr:nth-child(even) {
      background-color: #ffffff;
}

#accounts {
      display: flex;
      width: 100%;
      padding: 6px;
      margin-bottom: 6px;
}

.accountname {
      flex: 1;
      display: inline-block;
      border: 2px solid transparent;
      padding: 6px;
      user-select: none;
      cursor: pointer;
      text-align: center;
}

.accountname_selected {
      background: #ddf;
      border-radius: 6px;
}
