/* 下部フル幅バーの基本スタイル */
#rdcc-container {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  box-sizing: border-box;
  backdrop-filter: saturate(120%) blur(2px);
}

#rdcc-message {
  line-height: 1.5;
  margin: 0;
  max-width: 72ch;
}

#rdcc-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.rdcc-btn {
  appearance: none;
  border: none;
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
}

.rdcc-link {
  text-decoration: underline;
  opacity: .9;
}

@media (max-width: 768px) {
  #rdcc-container {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  #rdcc-message { max-width: none; }
  #rdcc-actions { justify-content: flex-end; }
}