/*!
 * -------------------------------------------------------
 * Project Name : Prop Funding
 * Author       : SoftwareZon
 * Author URL   : https://softwarezon.com
 * Version      : 1.0.0
 * Created      : 2025
 * Description  : Contains global CSS used by Table Design.
 * File         : table.css
 * -------------------------------------------------------
 * ©2025 SoftwareZon. All Rights Reserved.
 * -------------------------------------------------------
 */
/*----------------------------------------------------
  01. Tables Styles
----------------------------------------------------*/
.table tr td {
  backdrop-filter: blur(54px);
  background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.02)
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.06) 100%
    );
  color: rgba(var(--white), 0.8);
  font-size: var(--base-font);
  font-weight: 500;
  padding: 18px 18px;
  transition: 0.5s;
  border: none;
}
.table tr td:hover {
  background-color: rgba(var(--brand), 0.15);
}
.table tr th {
  background: rgba(var(--brand), 0.15);
  backdrop-filter: blur(50px);
  border: none;
  color: rgba(var(--white), 0.8);
  font-size: var(--base-font);
  font-weight: 500;
  white-space: nowrap;
  padding: 18px 18px;
}
.table tr:first-child th:first-child {
  border-top-left-radius: 10px;
}
.table tr:first-child th:last-child {
  border-top-right-radius: 10px;
}
.table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
