﻿/* Page styles for cai.html */

.cy-pay-filter  {
  display: grid;
  gap: 0;
  padding: 0;
  margin-bottom: 14px;
  border: 1px solid var(--cy-border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.cy-pay-filter-row  {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 0;
  min-height: 48px;
  border-bottom: 1px solid rgba(0, 154, 214, 0.08);
}

.cy-pay-filter-row:last-child  {
  border-bottom: none;
}

.cy-pay-filter-label  {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 154, 214, 0.08), rgba(0, 154, 214, 0.02));
  color: var(--cy-blue);
  font-size: 13px;
  font-weight: 900;
}

.cy-pay-filter-options  {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 9px 12px;
}

.cy-filter-empty  {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  color: var(--cy-muted);
  font-size: 13px;
}

.cy-pay-period  {
  min-height: 46px;
  padding: 0 12px 0 16px;
  margin-bottom: 14px;
  border: 1px solid var(--cy-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
}

.cy-pay-period strong  {
  color: var(--cy-navy);
  font-size: 15px;
}

.cy-pay-article  {
  grid-template-columns: 46px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border-color: rgba(0, 154, 214, 0.14);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.cy-pay-article:hover  {
  border-color: rgba(0, 154, 214, 0.34);
  box-shadow: 0 10px 26px rgba(43, 68, 144, 0.1);
  transform: translateY(-1px);
}

.cy-pay-avatar  {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cy-gold), var(--cy-cyan));
  color: var(--cy-navy);
  font-size: 16px;
  font-weight: 900;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.48);
}

.cy-pay-avatar img  {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cy-pay-main  {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.cy-pay-side  {
  justify-self: end;
  min-width: 64px;
  display: grid;
  gap: 5px;
  text-align: right;
}

.cy-pay-side strong  {
  color: var(--cy-green);
  font-size: 15px;
  font-weight: 900;
}

.cy-pay-side em  {
  justify-self: end;
  height: 24px;
  padding: 0 10px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  background: rgba(0, 154, 214, 0.08);
  color: var(--cy-cyan);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.cy-pay-actions  {
  justify-self: end;
  min-width: 188px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.cy-pay-price  {
  color: var(--cy-green);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.cy-rank-link b  {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(253, 185, 51, 0.22);
  color: var(--cy-navy);
  font-size: 12px;
}

.cy-expert-cell  {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cy-ink);
  font-weight: 900;
}

.cy-rank-badge  {
  color: var(--cy-blue);
  font-weight: 900;
}

.cy-rank-number  {
  display: inline-block;
  min-width: 18px;
  color: var(--cy-blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.cy-rate  {
  color: #de2103;
  font-weight: 900;
}

.table-img  {
  width: 34px;
  height: 34px;
  margin: 0;
  border-radius: 50%;
  object-fit: cover;
}

