/* General Styles */
.dashboard-content {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  background: #ffffff;
  font-family: Arial, sans-serif;
}
.dashboard-content h2{
  margin-block: 20px;
}

/* Project Image */
.project-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Section Styling */
.sub-dash {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 3.346px 3.716px 22.5px rgba(0, 0, 0, 0.07);
}

/* Details List */
.sub-dash ul {
  list-style: none;
  padding: 0;
}

.sub-dash ul li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.sub-dash ul li:last-child {
  border-bottom: none;
}

.investment-details ul li p{
  border-bottom: 1px solid #00000026;
  padding-bottom: 8px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.investment-doc ul li p {
  border: 1px solid #00000026;
  padding: 8px;
  display: block;
  border-radius: 5px;
}
.investment-doc ul p a{
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.investment-doc a svg{
  fill: #f15642;
}
.investment-details ul li{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.investment-doc ul li{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
/* Responsive Grid for Details */
@media (min-width: 768px) {
  .investment-details ul li{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .investment-doc ul li{
    display: flex;
    flex-wrap: wrap;
  }
}

/* Buttons */
.tab-button {
  /* background: #f3e5f5; */
  /* border: 1px solid #00000026; */
  padding: 10px 15px;
  margin-right: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
  border-radius: 5px;
}

/* .tab-button.active {
  background: #4b0561;
  color: white;
} */

/* Tab Navigation */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

/* Progress Images */
.progress-images {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.progress-image-container {
  width: calc(33.333% - 15px);
  max-width: 300px;
  text-align: center;
}

.progress-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .progress-image-container {
    width: 100%;
  }

  .investment-details ul {
    grid-template-columns: 1fr;
  }
}


