.color-chart__container .color-chart__card {
  cursor: pointer;
}

/* Modal Styles */
.color-chart-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  overflow: auto;
}

.color-chart-modal.active {
  display: flex;
}

.modal__container {
  position: relative;
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  max-width: 90%;
  width: 500px;
  height: 500px;
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}