/*!
 * -------------------------------------------------------
 * Project Name : Prop Funding
 * Author       : SoftwareZon
 * Author URL   : https://softwarezon.com
 * Version      : 1.0.0
 * Created      : 2025
 * Description  : Contains global CSS used by invest overview  components.
 * File         : invest-overview.css
 * -------------------------------------------------------
 * ©2025 SoftwareZon. All Rights Reserved.
 * -------------------------------------------------------
 */
/*----------------------------------------------------
  01. Invest Overview Section Styles
----------------------------------------------------*/
.investor-profile img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
}
.return-overview {
  border-collapse: separate;
  border-spacing: 0 8px;
}
.return-overview tr td {
  background: rgba(var(--brand), 0.05);
  border: none;
  color: rgba(var(--white), 0.8);
  font-size: var(--base-font);
  font-weight: 400;
  white-space: nowrap;
  padding: 5px 10px;
  border-top: 1px solid rgba(var(--brand), 0.2);
  border-bottom: 1px solid rgba(var(--brand), 0.2);
}
.return-overview tr td:hover {
  background-color: rgba(var(--brand), 0.15);
}
.return-overview tr th {
  border: none;
  color: rgba(var(--white), 0.8);
  font-size: var(--base-font);
  font-weight: 400;
  white-space: nowrap;
  padding: 5px 10px;
  padding-top: 0;
}
.return-overview tr td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-left: 1px solid rgba(var(--brand), 0.2);
}
.return-overview tr td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-right: 1px solid rgba(var(--brand), 0.2);
}
.return-overview tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.return-overview tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
.return-view-area {
  max-height: 270px;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.return-view-area::-webkit-scrollbar {
  display: none;
}
