/* Inherit website theme fonts & colors */
.ggo-wrap { max-width: 1100px; margin: 40px auto; padding: 0 20px; color: inherit; font-family: inherit; }
.ggo-title { margin: 0 0 12px; font-size: clamp(22px, 3vw, 34px); font-weight: 800; line-height: 1.15; color: inherit; }

/* Tabs */
.ggo-tabs { display: flex; gap: 10px; margin: 12px 0 18px; position: relative; }
.ggo-tab { padding: 10px 18px; border-radius: 25px; border: 1px solid #ddd; background: #f2f2f2; cursor: pointer; font-weight: 600; font-family: inherit; }
.ggo-tab.is-active { background: #e9f5ff; color: #0077cc; border-color: #d3e6ff; }
.ggo-edit { margin-left: auto; padding: 10px 14px; border-radius: 10px; border: 1px solid #ddd; background: #fafafa; cursor: pointer; font-weight: 600; }

/* Editor */
.ggo-editor[hidden] { display: none !important; }
.ggo-note { margin: 0 0 8px; color: #444; font-size: 14px; }
.ggo-textarea { width: 100%; min-height: 220px; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 12.5px; padding: 12px; border: 1px solid #e4e7eb; border-radius: 10px; background: #fff; resize: vertical; }
.ggo-editor-actions { display: flex; gap: 10px; margin-top: 10px; }
.ggo-btn { padding: 10px 16px; border-radius: 10px; border: 1px solid #ddd; background: #f2f2f2; cursor: pointer; font-weight: 600; }
.ggo-btn-plain { background: #fff; }
.ggo-status { align-self: center; font-size: 12px; color: #777; }

/* Cards */
.ggo-cards { display: grid; grid-template-columns: 1fr; gap: 28px; }
.ggo-card { background: #fff; border: 1px solid #e6e6e6; border-radius: 14px; box-shadow: 0 3px 14px rgba(0,0,0,0.05); padding: 14px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.ggo-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.08); border-color: #e0e6ee; }
.ggo-card-h { font-weight: 800; font-size: 16px; margin-bottom: 10px; color: inherit; }

/* Tables */
.ggo-tablewrap { background: #fff; border: 1px solid #e6e6e6; border-radius: 10px; overflow: auto; -webkit-overflow-scrolling: touch; }
.ggo-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 560px; font-family: inherit; }
.ggo-table th, .ggo-table td { border-bottom: 1px solid #eef1f5; padding: 10px 12px; text-align: left; color: inherit; }
.ggo-table td.dash { color: #777; text-align: center; vertical-align: middle; }
.ggo-table th { font-size: 12px; color: #666; text-transform: uppercase; letter-spacing: .08em; background: #f7faff; }

.ggo-legend { font-size: 13px; color: #666; margin-top: 16px; }

/* Sticky tabs on mobile */
@media (max-width: 680px){
  .ggo-tabs { position: sticky; top: 0; background: #fff; z-index: 60; padding: 8px 0; border-bottom: 1px solid #eee; box-shadow: 0 10px 14px rgba(0,0,0,0.04); }
}
