.wp-block-custom-discord-slash-command {
  background: var(--dsc-bg-color, #2f3136);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  transition: background-color 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.wp-block-custom-discord-slash-command .dsc-title-bar {
  background: var(--dsc-title-bg, #1e1f22);
  color: var(--dsc-title-text-color, #b9bbbe);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wp-block-custom-discord-slash-command .dsc-title-bar::before {
  content: '/';
  font-size: 16px;
  line-height: 1;
  margin-right: 6px;
  font-weight: 600;
  color: #5865f2;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wp-block-custom-discord-slash-command .dsc-command-wrapper {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dsc-text-color, #dcddde);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: var(--dsc-font-size, 14px);
}

.wp-block-custom-discord-slash-command:hover .dsc-command-wrapper {
  background: var(--dsc-bg-hover, #36393f);
}

.wp-block-custom-discord-slash-command .dsc-command-wrapper .dsc-bot-avatar {
  width: var(--dsc-avatar-size, 32px);
  height: var(--dsc-avatar-size, 32px);
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.wp-block-custom-discord-slash-command .dsc-command-wrapper .dsc-command-content {
  flex: 1;
  min-width: 0;
}

.wp-block-custom-discord-slash-command .dsc-command-wrapper .dsc-command-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.wp-block-custom-discord-slash-command .dsc-command-wrapper .dsc-command-name {
  color: var(--dsc-command-color, #5865f2);
  font-weight: 500;
  font-size: var(--dsc-command-size, 14px);
}

.wp-block-custom-discord-slash-command .dsc-command-wrapper .dsc-param-tag {
  background: var(--dsc-param-bg, #5865f2);
  color: var(--dsc-param-text, #ffffff);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: var(--dsc-param-size, 12px);
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  display: inline-block;
  border: none;
}

.wp-block-custom-discord-slash-command .dsc-command-wrapper .dsc-param-tag:hover {
  background: var(--dsc-param-bg-hover, #4752c4);
  transform: translateY(-1px);
}

.wp-block-custom-discord-slash-command .dsc-command-wrapper .dsc-param-tag:active {
  transform: translateY(0);
}

.wp-block-custom-discord-slash-command .dsc-command-wrapper .dsc-command-description {
  font-size: var(--dsc-description-size, 12px);
  color: var(--dsc-description-color, #72767d);
  margin-top: 4px;
}

/* Modal de parámetro */
.dsc-param-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #36393f;
  border-radius: 8px;
  padding: 20px;
  padding-top: 50px;
  max-width: 500px;
  width: 90%;
  z-index: 100000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  color: #dcddde;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.dsc-param-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99999;
}

.dsc-param-modal h3 {
  margin: 0 0 16px 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding-right: 30px;
}

.dsc-param-modal-content {
  margin-bottom: 0;
}

.dsc-param-modal-content p {
  margin: 0 0 8px 0;
  color: #b9bbbe;
  line-height: 1.5;
}

.dsc-param-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  color: #dcddde;
  border: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
  font-family: Arial, sans-serif;
}

.dsc-param-modal-close:hover {
  color: #ffffff;
  transform: scale(1.1);
}

.dsc-param-modal-close:active {
  transform: scale(0.95);
}

/* Script para manejar modales en frontend */
.dsc-param-modal-trigger {
  cursor: pointer;
}
