/* Full Width Layout */
.dashboard-content {
  width: 100%; 
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.project-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Tab Navigation */
.tabs {
  display: flex;
  justify-content: start;
  overflow-x: auto;
  margin-bottom: 10px;
}

.tab-button {
  background: #f5f5f5;
  border: none;
  padding: 10px 20px;
  margin-right: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.tab-button.active {
  background: #007bff;
  color: white;
  border-radius: 5px;
}

/* Tab Content */
.progress-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 15px;
}

.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;
}
