.jr-liquidez {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 18px 36px;
}

.jr-liquidez__header {
  text-align: center;
  margin-bottom: 24px;
}

.jr-liquidez__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  color: #1f2f6f;
  font-weight: 800;
}

.jr-liquidez__subtitle {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 15px;
}

.jr-liquidez__tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.jr-liquidez__tab {
  border: 0;
  background: transparent;
  color: #23367f;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
}

.jr-liquidez__tab.is-active {
  background: #e8ecfb;
  color: #23367f !important;
}

.jr-liquidez__tab:hover{
    box-shadow: none !important;
}

.jr-liquidez__chart-card {
  position: relative;
  height: 430px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}

.jr-liquidez__chart-card canvas {
  width: 100% !important;
  height: 100% !important;
}

.jr-liquidez__controls {
  display: flex;
  justify-content: flex-end;
  margin: 40px 0 10px;
}

.jr-liquidez__search {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #b9c6ef;
  border-radius: 8px;
  padding: 6px 8px 6px 12px;
  background: #fff;
}

.jr-liquidez__search-input {
  border: 0;
  outline: none;
  font-size: 14px;
  min-width: 220px;
  color: #1f2f6f;
  background: transparent;
}

.jr-liquidez__search-btn {
  border: 0;
  background: #304c93;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  padding: 5px 21px;
  cursor: pointer;
  font-size: 13px !important;
}

.jr-liquidez__table-wrap {
  overflow: hidden;
  border-radius: 10px;
}

.jr-liquidez__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.jr-liquidez__table thead th {
  background: #304c93;
  color: #fff;
  font-size: 14px;
  padding: 14px 10px;
  text-align: center;
}

.jr-liquidez__table tbody td {
  padding: 12px 10px;
  text-align: center;
  color: #2f3645;
  font-size: 14px;
}

.jr-liquidez__table tbody tr:nth-child(even) td {
  background: #e8ecfb;
}

.jr-liquidez__table tbody tr:nth-child(odd) td {
  background: #ffffff;
}

.jr-liquidez__empty {
  text-align: center;
  padding: 18px !important;
  color: #6b7280;
}

.jr-liquidez__pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.jr-liquidez__page-btn {
  width: 34px;
  height: 28px;
  border: 1px solid #b9c6ef;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  color: #304c93;
  font-size: 18px;
  line-height: 0.6;
}

.jr-liquidez__page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.jr-liquidez__page-label {
  font-size: 12px;
  color: #6b7280;
  min-width: 42px;
  text-align: center;
}

@media (max-width: 768px) {
  .jr-liquidez__chart-card {
    height: 320px;
  }

  .jr-liquidez__controls {
    justify-content:space-between;
  }

  .jr-liquidez__search {
    width: 100%;
    justify-content: center;
    padding: 6px 3px;
  }

  .jr-liquidez__search-input {
    min-width: 0px;
  }
}