.fraud-risk-page {
  background: #f8f9fb;
  padding: 1.5rem;
}

/* Header */
.page-header h4 {
  font-weight: 600;
}
.page-header p {
  font-size: 0.85rem;
  color: #777;
}
.back-btn {
  color: #ff9f1c;
  padding: 0;
}

/* User Summary */
.user-summary {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  background-color: #eef4ff;
  border: none;
}
.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.user-img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
}
.user-info h6 {
  color: #000;
  font-family: "Lora", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 6px;
}
.user-info p {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
.stats .stat-box {
  border-radius: 12px;
  border: 1px solid #e9ecef;
  background-color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
}
.stat-box span {
  display: block;
  color: #585858;
  font-family: "Lora", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 4px;
}
.stat-box strong {
  font-size: 1.15rem;
  font-weight: 600;
  color: #202224;
  font-family: "Lora", serif;
}

/* Filters */
.filters {
  margin-bottom: 1.5rem;
  gap: 0.75rem;
}

/* Session Card */
.session-card {
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  background: #fff;
  margin-bottom: 1.5rem;
}
.session-card h6 {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
}
.session-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.session-meta {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 1rem;
}
.reward {
  margin-left: 1rem;
  color: #ff9f1c;
  font-weight: 500;
  border-radius: 8px;
  font-size: 14px;
  border: 0.5px solid #fc9f10;
  background: rgba(252, 159, 16, 0.15);
  padding: 6px 10px;
}

/* Status badges */
.status {
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
}
.status.completed {
  border-radius: 44px;
  background-color: rgba(32, 160, 0, 0.15) !important;
  color: #20a000;
  line-height: normal;
}
.status.partial {
  border-radius: 44px;
  background-color: rgba(252, 159, 16, 0.13) !important;
  color: #fc9f10;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.status.left-early {
  border-radius: 44px;
  background-color: rgba(255, 0, 0, 0.13) !important;

  color: #f00;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* Screenshots */
.screenshots {
  margin-top: 1rem;
  border-top: 1px solid #e6e6e6;
}
.screenshots-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 12px;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.screenshots-header span {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.screenshots-header button {
  color: var(--golden-shade-button, #fc9f10);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: underline !important;
  padding: 0;
  border: 0;
  outline: none;
}
.screenshots-list {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.shot {
  text-align: center;
  font-size: 0.7rem;
}
.shot img {
  width: 125px;
  height: 90px;
  border-radius: 4px;
  margin-bottom: 4px;
  display: block;
  object-fit: cover;
}
.shot span {
  color: #222;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* Alerts */
.alert {
  margin-top: 0.75rem;
  padding: 0.5rem;
  font-size: 0.75rem;
  border-radius: 6px;
}
.alert.completed {
  background: #e6f4ea;
  color: #137333;
}
.alert.partial {
  background: #fff4e5;
  color: #b26a00;
}
.alert.left-early {
  background: #fdecea;
  color: #b3261e;
}
@media (max-width: 1400px) {
  .stat-box strong {
    font-size: 1rem;
  }
  .user-img {
    width: 70px;
    height: 70px;
  }
  .user-info p {
    font-size: 16px;
  }
  .user-summary {
    padding: 0.875rem;
  }
  .user-info h6 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .user-info {
    margin-bottom: 1rem;
  }
  .stats .stat-box {
    margin-bottom: 1rem;
    height: 85% !important;
    padding: 0.75rem 0.875rem;
  }
  .user-summary {
    margin-bottom: 1rem;
  }
  .shot img {
    width: 90px;
    height: 70px;
  }
  .stat-box span {
    font-size: 12px;
  }
  .stat-box strong {
    font-size: 14px;
  }
  .reward {
    display: inline-block;
    font-size: 12px;
    padding: 4px 8px;
  }
  .session-meta {
    font-size: 12px;
  }
  .session-card h6,
  .screenshots-header span {
    font-size: 14px;
  }
  .session-header {
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .status {
    padding: 0.15rem 0.75rem;
  }
  .session-card {
    padding: 0.875rem;
  }
  .screenshots-header button {
    font-size: 14px;
  }
  .shot span {
    font-size: 12px;
  }
  .user-info p,
  .user-info h6 {
    font-size: 14px;
  }
  .status{
    font-size: 12px !important;
  }
}
@media (max-width: 576px) {
  .shot img {
    width: 60px;
    height: 60px;
  }
}
