.summary {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
  padding: 20px;
  background: linear-gradient(90deg, #2E2E2E, #1E1E1E);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.summary-item {
  text-align: center;
}

.summary-item p {
  margin: 5px 0;
}

.dca-settings {
  background: linear-gradient(90deg, #2E2E2E, #1E1E1E);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.dca-settings h2 {
  text-align: center;
}

.dca-settings label {
  display: block;
  margin: 10px 0 5px;
}

.dca-settings input, .dca-settings select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #444;
  background-color: #3A3A3A;
  color: #FFFFFF;
}

.chart-container {
  background-color: #2E2E2E;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin: 20px 0;
}

.chart {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 600px;
}

#loading {
  display: none;
  color: #FFC300;
  text-align: center;
}

.copy-link-field {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
}

.copy-link-field input {
  flex: 1;
  width: 100%;

  padding: 10px;
  border-radius: 5px 0 0 5px;
  border: 1px solid #444;
  background-color: #3A3A3A;
  color: #FFFFFF;
}
.copy-link-field button {
  flex-shrink: 0;
  padding: 10px 20px;
  margin-left: 0px;
  border-radius: 0 5px 5px 0;
  border: 1px solid #444;
  background-color: #3A3A3A;
  color: #FFFFFF;
  cursor: pointer;
}

.dca-explanation {
  background: linear-gradient(90deg, #2E2E2E, #1E1E1E);
  padding: 20px;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  text-align: center;
}

.dca-explanation h2, .dca-explanation h3 {
  color: #FFC300;
}

.dca-explanation p {
  color: #FFFFFF;
  line-height: 1.5;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.footer-logo img {
  height: 50px;
}

