/* ===== BEST RESPONSIVE GRID ===== */
.funds-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* Remove width for perfect grid alignment */
.fund-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.fund-card h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.risk, .category {
  font-weight: bold;
  color: #222;
}

.date {
  font-size: 14px;
  color: #555;
  margin: 10px 0;
}

.price-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 15px 0;
}

.price span {
  display: block;
  font-size: 14px;
  color: #555;
}

.price strong {
  font-size: 18px;
  display: block;
  margin-top: 5px;
}

.divider {
  width: 1px;
  height: 50px;
  background-color: #ccc;
}

.buttons {
  display: flex;
  justify-content: space-around;
  margin-top: 15px;
}

.buttons button {
  background-color: #56BC65;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.buttons button:hover {
  background-color: #41b351;
}

.historical-Nave-Table{
    margin-top: 50px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

th, td {
    padding: 10px 15px;
    border: 1px solid #ccc;
}
td>a{
	color: #56bc65 !important;
}
th {
    background-color: #56BC65;
    color: #fff;
}

tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

td:first-child {
    font-weight: bold;
    background-color: #f6f6f6;
}
