/* Logbook */
.sc-logbook-page { max-width: 1200px; margin: 0 auto; padding: 2rem 1rem; }
.sc-table-wrap { overflow-x: auto; }
.sc-logbook-tbl { width: 100%; border-collapse: collapse; background: #1a2744; border-radius: 12px; overflow: hidden; }
.sc-logbook-tbl th { background: #0f172a; color: #d4a843; padding: 12px 14px; text-align: left; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.sc-logbook-tbl td { padding: 10px 14px; border-bottom: 1px solid #2a3a5c; color: #e2e8f0; font-size: 0.9rem; }
.sc-logbook-tbl a { color: #d4a843; text-decoration: none; }
.sc-logbook-tbl a:hover { text-decoration: underline; }
.sc-logbook-tbl tr:hover td { background: rgba(212,168,67,0.05); }

/* Events */
.sc-events-page { max-width: 1200px; margin: 0 auto; padding: 2rem 1rem; }
.sc-events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.sc-event-card { background: #1a2744; border: 1px solid #2a3a5c; border-radius: 12px; padding: 1.5rem; transition: transform 0.2s, border-color 0.2s; }
.sc-event-card:hover { transform: translateY(-4px); border-color: #d4a843; }
.sc-event-card__badge { display: inline-block; background: #d4a843; color: #0f172a; padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.75rem; }
.sc-event-card h3 { margin: 0 0 0.5rem; }
.sc-event-card h3 a { color: #e2e8f0; text-decoration: none; }
.sc-event-card h3 a:hover { color: #d4a843; }
.sc-event-card__body { color: #94a3b8; font-size: 0.9rem; margin-bottom: 0.75rem; }
.sc-event-card__date { color: #64748b; font-size: 0.85rem; }

@media (max-width: 640px) {
  .sc-events-grid { grid-template-columns: 1fr; }
}