/* Fund Details Table */

.amplify-fund-details-table {
  width: 100%;
  margin-bottom: 0;
}

.amplify-fund-details-table__table {
  width: 100%;
  border-collapse: collapse;
}

/* Remove all borders */
.amplify-fund-details-table__table,
.amplify-fund-details-table__table td {
  border: 0;
}

.amplify-fund-details-table__table tbody tr {
  border-bottom: 1px solid #A5A5A5;
}

.amplify-fund-details-table__table tbody tr:last-child {
  border-bottom: 1px solid #A5A5A5;
}

/* Table cells */
.amplify-fund-details-table__table tbody td {
  padding: 10px 0px;
  background-color: #ffffff !important;
  font-size: 15px;
  line-height: 1.2em;
  vertical-align: middle;
}

.amplify-fund-details-table__table .label-cell {
  width: 50%;
  text-align: left;
}

.amplify-fund-details-table__table .label-cell strong {
  font-weight: 400;
  color: #152F41;
}

.amplify-fund-details-table__table .value-cell {
  width: 50%;
  text-align: left;
  font-weight: 300;
  color: #152F41;
}

/* Holdings link */
.amplify-fund-details-table__table .holdings-link {
  color: #0080F5;
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
}

.amplify-fund-details-table__table .holdings-link:hover {
  color: #30F2BB;
  text-decoration: underline;
}

/* Loading state */
.amplify-fund-details-table .loading {
  padding: 20px;
  text-align: center;
  color: #666;
}

/* Tooltip styles */
.amplify-fund-details-table__table .tooltip-container {
  position: relative;
  display: inline-block;
  margin-left: 4px;
}

.amplify-fund-details-table__table .tooltip-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  font-style: normal;
  color: #ffffff;
  background-color: #0080F5;
  cursor: help;
  border-radius: 50%;
  vertical-align: middle;
}

.amplify-fund-details-table__table .tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: 300px;
  background-color: #152F41;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 12px;
  position: absolute;
  z-index: 1000;
  bottom: 125%;
  left: 50%;
  margin-left: -150px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 300;
  transition: opacity 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.amplify-fund-details-table__table .tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #152F41 transparent transparent transparent;
}

.amplify-fund-details-table__table .tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Mobile responsive */
@media screen and (max-width: 767px) {
  .amplify-fund-details-table__table tbody td {
    padding: 10px 6px;
    font-size: 14px;
  }
  
  .amplify-fund-details-table__table .holdings-link {
    font-size: 12px;
  }
  
  .amplify-fund-details-table__table .tooltip-text {
    width: 250px;
    margin-left: -125px;
    font-size: 12px;
  }
}
