
.sdv2-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.66);
  display: none;
  z-index: 1000;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}


.sdv2-container{
  background-color: var(--fw-white-050);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  /* border-radius: 8px 8px 0 0; */
  box-sizing: border-box;
}

.sdv2-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  background-color: var(--fw-white-200);
  transition: background-color 0.2s ease;
}


.sdv2--close:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.sdv2--content {
  position: relative;
  width: 100%;
  height: 100%;
}

.sdv2-::-webkit-scrollbar {
  width: 6px;
}

.sdv2-::-webkit-scrollbar-track {
  background: transparent;
}

.sdv2-::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.sdv2-.dark::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}
