/* Soft UI Configurator Styles */
.fixed-plugin {
  position: fixed;
  top: 0;
  right: -360px;
  width: 360px;
  height: 100vh;
  z-index: 1031;
  transition: right 0.3s ease-in-out;
}

.fixed-plugin.show {
  right: 0;
}

.fixed-plugin .card {
  height: 100vh;
  overflow-y: auto;
  border-radius: 0;
  margin: 0;
}

.fixed-plugin-button {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 8px 0 0 8px;
  box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 1030;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.fixed-plugin-button:hover {
  width: 52px;
  box-shadow: -6px 6px 24px rgba(0, 0, 0, 0.15);
}

.fixed-plugin-button i {
  font-size: 18px;
  color: #67748e;
}

.fixed-plugin-button-nav {
  cursor: pointer;
}

.fixed-plugin .badge-colors .badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  margin-right: 8px;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.fixed-plugin .badge-colors .badge:hover {
  transform: scale(1.1);
}

.fixed-plugin .badge-colors .badge.active {
  border-color: #344767;
  box-shadow: 0 0 0 3px rgba(52, 71, 103, 0.2);
}

.fixed-plugin .btn-primary {
  background-image: linear-gradient(310deg, #cb0c9f, #cb0c9f);
  border: none;
}

.fixed-plugin .btn-primary:hover {
  background-image: linear-gradient(310deg, #a00979, #a00979);
}

.fixed-plugin-close-button {
  background: none;
  border: none;
  color: #67748e;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.fixed-plugin-close-button:hover {
  background: rgba(103, 116, 142, 0.1);
}

/* Scrollbar styling for configurator */
.fixed-plugin .card::-webkit-scrollbar {
  width: 6px;
}

.fixed-plugin .card::-webkit-scrollbar-track {
  background: transparent;
}

.fixed-plugin .card::-webkit-scrollbar-thumb {
  background: rgba(103, 116, 142, 0.3);
  border-radius: 3px;
}

.fixed-plugin .card::-webkit-scrollbar-thumb:hover {
  background: rgba(103, 116, 142, 0.5);
}
