/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 08 2026 | 08:13:40 */
.list {
  padding: 0;
}

.list ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  position: relative;
}

.list a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pc-body-color);
  background-color: transparent;
  border: 1.5px solid #B6A3D9;
  border-radius: 4px;
  box-sizing: border-box;
  text-align: center;
  transition: background-color .2s ease, color .2s ease;
}

.list li > a:hover {
  background-color: #B6A3D9;
  color: #ffffff;
  text-decoration: none;
}