/*
 * WIFAQ — Client statement inside clients table
 */

/*
 * Hide client statements from sidebar only.
 * The page and permission remain active.
 */
aside a[href*="/client-statements"],
aside button[onclick*="/client-statements"],
#sidebar a[href*="/client-statements"],
#sidebar button[onclick*="/client-statements"],
.sidebar a[href*="/client-statements"],
.sidebar button[onclick*="/client-statements"],
.nav-list a[href*="/client-statements"],
.nav-list button[onclick*="/client-statements"] {
  display: none !important;
}

/*
 * Clients table statement column.
 */
.wifaq-statement-column {
  width: 132px;
  min-width: 132px;
  text-align: center !important;
  white-space: nowrap;
}

.wifaq-statement-button {
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(24, 80, 108, 0.18);
  border-radius: 9px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  color: #12394f !important;
  background: rgba(24, 80, 108, 0.07);

  font-size: 11px;
  font-weight: 800;
  line-height: 1;

  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;

  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.wifaq-statement-button:hover {
  color: #ffffff !important;
  border-color: #18506c;
  background: #18506c;
  transform: translateY(-1px);
}

.wifaq-statement-button svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

@media (max-width: 760px) {
  .wifaq-statement-column {
    width: 112px;
    min-width: 112px;
  }

  .wifaq-statement-button {
    min-height: 32px;
    padding: 6px 9px;
    font-size: 10px;
  }
}
