.recaps-modal-overlay {
  position: fixed;
  z-index: 1050;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(40, 40, 70, 0.16);
}
.recaps-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 1100;
  border-radius: 16px;
  box-shadow: 0 6px 36px rgba(20,40,100,0.17);
  min-width: 330px;
  max-width: 98vw;
  min-height: 120px;
  max-height: 90vh;
  overflow: auto;
  padding-bottom: 20px;
}
.recaps-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px 8px 22px;
  border-bottom: 1px solid #e8e8ef;
}
.recaps-modal-title {
  font-weight: bold;
  font-size: 1.25em;
  color: #00507D;
}
.recaps-modal-close {
  background: none;
  border: none;
  font-size: 2em;
  color: #00507D;
  cursor: pointer;
  transition: color 0.14s;
}
.recaps-modal-close:hover {
  color: #B80026;
}
.recaps-modal-content {
  padding: 18px 28px;
}
.recaps-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  font-size: 1em;
}
.recaps-table th,
.recaps-table td {
  border: 1px solid #e8e8ef;
  padding: 8px 10px;
  text-align: left;
}
.recaps-table th {
  background: #f7fafd;
  color: #00507D;
  font-weight: 700;
}
.recaps-table tr:nth-child(even) {
  background: #fafbfc;
}

