/* ------------------------------- */
/* MAIN CONTAINER */
.lp-container {
    max-width: 900px;
    margin: auto;
    padding: 30px;
    background: #fdfdfd;
    border-radius: 12px;
    font-family: Arial, sans-serif;
    line-height: 1.8;
}

/* MAIN TITLE */
.lp-container h1 {
    font-size: 32px;
    color: #0b5394;
    border-bottom: 3px solid #0b5394;
    padding-bottom: 12px;
    margin-bottom: 30px;
}

/* ------------------------------- */
/* CARD STYLING */
.lp-card {
    border: 1px solid #c8def5;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* CARD HEADER */
.lp-card-header {
    background: #0b5394;
    color: white;
    font-weight: 600;
    padding: 12px 18px;
    font-size: 18px;
}

/* CARD BODY */
.lp-card-body {
    padding: 15px 18px;
    background: #f4f8fc;
}

/* ------------------------------- */
/* CODE BLOCKS */
.lp-card-body pre {
    background: #ffffff;
    border-left: 4px solid #0b5394;
    padding: 12px;
    border-radius: 6px;
    overflow-x: auto;
    margin-bottom: 15px;
    font-family: Consolas, monospace;
    font-size: 14px;
    color: #0b5394;
}

/* ------------------------------- */
/* NOTE / ALERTS */
.lp-note {
    background: #ffeaea;
    border-left: 4px solid #ff4d4d;
    padding: 10px 12px;
    margin: 12px 0;
    border-radius: 4px;
    color: #b30000;
    font-weight: bold;
}

/* ------------------------------- */
/* LIST STYLING */
.lp-card-body ul {
    padding-left: 20px;
    margin: 10px 0;
}
.lp-card-body ul li {
    margin-bottom: 6px;
}

/* ------------------------------- */
/* INLINE TABLE OF CONTENTS */
.lp-toc-inline {
    background: #0b5394;
    color: #fff;
    padding: 15px 18px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.lp-toc-inline h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.lp-toc-inline ul {
    list-style: none;
    padding-left: 0;
}

.lp-toc-inline ul li {
    margin-bottom: 8px;
}

.lp-toc-inline ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.lp-toc-inline ul li a:hover {
    color: #ffd966;
}

/* ------------------------------- */
/* RESPONSIVE STYLING */
@media screen and (max-width: 800px) {
    .lp-container { padding: 15px; }
    .lp-card-header { font-size: 16px; }
    .lp-card-body pre { font-size: 13px; }
    .lp-toc-inline { max-width: 100%; margin-bottom: 20px; }
}

/* ------------------------------- */
/* OPTIONAL: Smooth scrolling for TOC links */
html {
    scroll-behavior: smooth;
}
