.chart-container,
.small-chart-container {
  width: 100%;
  height: 500px;
  padding: 25px;
  background: #fff;
  position: relative;
  height: 250px;
  padding: 10px;
}

.small-chart-container {
  border-radius: 9px;
  box-shadow: 3.693px 5.372px 14.773px -3.693px rgba(0, 0, 0, 0.25);
}

.empty-chart-container {
  background-color: #fefefe;
}

.graph-filters {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

/* Button styling */
.currency-dropbtn {
  background: var(
    --grad,
    linear-gradient(154deg, #f23d4c 16.07%, #f99f38 83.87%)
  );
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  font-size: 12px;
  border-radius: 70px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.currency-dropdown {
  position: relative;
  display: inline-block;
}

.currency-dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  z-index: 1;
}

.currency-dropdown-content button {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: #333;
  text-align: left;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.currency-dropdown-content button:hover {
  background-color: #f1f1f1;
}

.currency-dropdown-content button:focus {
  outline: none;
}

.currency-dropdown:hover .currency-dropdown-content {
  display: block;
}

.currency-dropdown:hover .currency-dropbtn span {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.month-button-group {
  display: flex;
  background-color: #e5e8ef;
  padding: 10px 15px;
  border-radius: 75px;
  width: fit-content;
}

.month-button-group button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #1a202c;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 50%;
  margin-right: 5px;
  width: 25px;
  height: 25px;
  padding: 0;
}

.month-button-group button:focus {
  outline: none;
}

.month-button-group button:last-child {
  margin-right: 0;
}

.month-button-group button:hover {
  background-color: #cbd5e0;
}

.month-button-group button.active {
  background: linear-gradient(154deg, #f23d4c 16.07%, #f99f38 83.87%);
  color: white;
}

@media screen and (max-width: 768px) {
  .chart-container {
    padding: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
  }
}
