/* Container overlay (bottom-right card style, not full-screen dimmer) */
#wc-ssr-modal.wc-ssr-modal {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 320px;
  max-width: 90%;
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  z-index: 99999;
  padding: 16px;
  box-sizing: border-box;
}

.wc-ssr-modal-inner {
  display: flex;
  flex-direction: column;
}

.wc-ssr-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.wc-ssr-title {
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

.wc-ssr-close {
  background: none;
  border: 0;
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
  color: #000;
}

.wc-ssr-label {
  font-size: 13px;
  display: block;
  margin: 8px 0 4px;
  color: #000;
}

.wc-ssr-textarea {
  width: 100%;
  min-height: 60px;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px;
  resize: vertical;
  box-sizing: border-box;
  color: #000;
}

.wc-ssr-input {
  width: 100%;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px;
  box-sizing: border-box;
  color: #000;
}

.wc-ssr-send-btn {
  margin-top: 12px;
  width: 100%;
  background: #111;
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;
}

.wc-ssr-status {
  font-size: 12px;
  color: #000;
  margin-top: 8px;
}

.wc-ssr-footnote {
  font-size: 11px;
  color: #000;
  margin-top: 8px;
  line-height: 1.4;
}
