.cpd-btn {
  align-items: center;
  background-color: rgb(47 136 72 / 47%);
  color: #f1f1f1;
  display: flex;
  height: 2.7em;
  justify-content: center;
  width: 4.2em;
  border: 1px solid;
  border-bottom: 2px solid #f1f1f1;
}
.cpd-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.cpd-modal-content {
  background-color: rgba(26, 26, 34, 0.8);
  border: 1px solid rgba(34, 167, 240, 0.15);
  margin: 10% auto;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  position: relative;
  top: 20%;
}
.cpd-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}
.cpd-progress {
  width: 100%;
  height: 20px;
  background: #eee;
  overflow: hidden;
  margin: 20px 0;
}
.cpd-progress-bar {
  width: 0%;
  height: 100%;
  background: #0073aa;
  transition: width 0.3s;
}
.cpd-start-download {
  background: #00a32a;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}
.cpd-start-download:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.cpd-disclaimer {
  background: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
  padding: 10px;
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.5;
}
