/* docs-theme.css — ευθυγραμμίζει όλα τα docs με το light "apps" theme του Virtuino.
   Φορτώνεται ΤΕΛΕΥΤΑΙΟ ώστε να υπερισχύει των inline styles κάθε σελίδας. */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* full-width body (ώστε header/footer να είναι από άκρη σε άκρη), soft light bg */
body {
    font-family: 'Inter', sans-serif !important;
    background-color: #eef1f7 !important;
    color: #1f2733 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background-image:
        radial-gradient(900px 480px at 12% -5%, rgba(33,136,255,0.07), transparent 60%),
        radial-gradient(820px 460px at 92% 6%, rgba(255,69,0,0.05), transparent 60%);
}

/* το περιεχόμενο σε κεντραρισμένη λευκή κάρτα */
.container {
    max-width: 1000px !important;
    margin: 34px auto !important;
    border: 1px solid #e3e8f0 !important;
    border-radius: 18px !important;
    box-shadow: 0 12px 40px rgba(31,55,99,0.10) !important;
}

/* Επικεφαλίδες + Virtuino accents */
h1, h2, h3, h4, h5 { font-family: 'Space Grotesk', sans-serif !important; }
h1 { color: #141a22 !important; border-bottom-color: #ff4500 !important; }
h2 { color: #141a22 !important; border-left-color: #2188ff !important; }
h3 { color: #5b6675 !important; }
h4 { color: #2188ff !important; }
a { color: #2188ff; }
a:hover { color: #ff4500; }

/* inline code */
code { color: #d6336c !important; background: #f1f4f9 !important; }

/* info / status boxes → Virtuino palette */
.info-box { background: rgba(33,136,255,0.07) !important; border-left-color: #2188ff !important; color: #2b3a4d !important; }
.info-box strong { color: #2188ff !important; }
.warning-box { background: rgba(255,69,0,0.06) !important; border-left-color: #ff8c00 !important; }
.success-box { background: rgba(22,163,74,0.08) !important; border-left-color: #16a34a !important; }
.error-box { background: rgba(220,48,37,0.06) !important; border-left-color: #d93025 !important; }

/* HTTP method chips */
.method.get  { background:#e8f0fe !important; color:#2188ff !important; border-color:#2188ff !important; }
.method.post { background:#e6f4ea !important; color:#137333 !important; border-color:#137333 !important; }

/* tabs */
.tab-btn:hover { background:#e8f0fe !important; color:#2188ff !important; }
.tab-btn.active { background:#141a22 !important; color:#fff !important; }

/* tables */
th { background:#f6f8fc !important; color:#141a22 !important; }
