.modal {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modalContent {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  outline: none;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e0e0e0;
}

.title {
  font-weight: 500;
  color: #333;
  margin: 0;
}

.closeButton {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.closeButton:hover {
  background-color: #f5f5f5;
}

.content {
  padding: 24px;
}

.loadingContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 0;
}

.activityDetails {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  background-color: #fafafa;
}

.sectionTitle {
  font-weight: 500;
  color: #333;
  margin-bottom: 16px;
  font-size: 16px;
}

.infoRow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 16px;
}

.infoRow:last-child {
  margin-bottom: 0;
}

.label {
  font-weight: 500;
  color: #666;
  min-width: 120px;
  flex-shrink: 0;
}

.value {
  color: #333;
  text-align: right;
  word-break: break-word;
  flex: 1;
}

.noActivity {
  text-align: center;
  padding: 40px 0;
  color: #666;
}

.noActivity h6 {
  margin-bottom: 8px;
  color: #333;
}

@media (max-width: 768px) {
  .modalContent {
    width: 95%;
    max-height: 90vh;
  }

  .infoRow {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .value {
    text-align: left;
  }
}
