/* Base styles - Common styles for all views */
body,
.mcs-coin-page,
.mcs-standalone-wrapper,
.mcs-pop-body,
.mcs-print-body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  box-sizing: border-box;
}

/* Header & language switcher */
.mcs-coin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mcs-lang-switcher {
  display: flex;
  gap: 4px;
}

.mcs-lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 6px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 4px;
}

.mcs-lang-current {
  outline: 1px solid #ccc;
}

/* Card style */
.mcs-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  margin-bottom: 20px;
}