/* Custom styles for the layout */
body {
    font-family: 'Inter', sans-serif;
}
.main-layout {
    display: flex;
    flex-direction: column;
    height: 100vh;
}
.content-wrapper {
    display: flex;
    flex-direction: column; /* Stacks panes vertically on mobile */
    flex-grow: 1;
    overflow-y: auto;      /* Allows the page to scroll on mobile */
}

@media (min-width: 768px) { /* This is Tailwind's 'md' breakpoint */
    .content-wrapper {
        flex-direction: row; /* Switches to side-by-side on desktop */
        overflow: hidden;    /* Disables page scroll so panes scroll individually */
    }
}
.left-pane {
    background-color: #f8fafc;
    border-right: 1px solid #e2e8f0;
    flex-shrink: 0;
    overflow-y: auto;
}

#main-content {
    flex-grow: 1;
    overflow-y: auto;
    background-color: #ffffff;
    padding: 1rem;
}
.nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.arrow-link::after {
  content: ' \25B6'; /* Unicode for a right-pointing triangle */
  font-size: 0.8em;   /* Makes the icon slightly smaller than the text */
  margin-left: 5px; /* Adds a bit of space after the text */
}

.arrow-link {
  text-decorartion: none;
}

.download-link:hover {
    color: purple;
    font-weight: 600;
}

.nav-link:hover {
    background-color: #e2e8f0;
    color: #0f172a;
}
.nav-link:last-child {
    border-bottom: none;
}
.footer {
    flex-shrink: 0;
    border-top: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

/* the #toc id is applied in white-papers.html using jQuery */
#toc {
    font-size: 1.5em;
    color: white;
    background-color: #ff9900;
    padding: 0px 10px 0px 10px;
    border: 1px;
    border-style: solid;
    border-color: #999999;
    border-radius: 3px;
    display: inline-block;
}


/* ------------------------------------------------------------ */
/* about                                                        */
/* ------------------------------------------------------------ */

#about-content {
    color: #374151; /* gray-700 */
    /* line-height: 1.6; */
    font-family: roboto;
}
#about-content h1 {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 700;
    border-bottom: 1px solid #e5e7eb; /* gray-200 */
    margin-bottom: 0.5rem;
    margin-top: 0px;
    padding-top: 0px;
}

#about-content h2 {
    font-size: 1rem; /* text-2xl */
    font-weight: 600;
    margin-top: .5rem;
    margin-bottom: 0px;
}

#about-content .wow {
    margin: 10px 0px 5px 0px;
    font-style: italic;
    font-weight: 600;
    color: black;
    display: inline-block;
    padding: 5px 10px 5px 10px;
    background: #ff9900; 
    border-radius: .5rem;
}


#about-content p {
    padding: 5px;
    margin-bottom: 0px;
    margin-top: 0px;
}

#about-content code {
    color: #ff9900;
    background-color: #333;
    font-weight: 600;
    padding: 3px 3px 0px 3px;
    border-radius: 3px;
    font-family: monospace;
}

#about-content .code {
    background-color: #1f2937; /* gray-800 */
    color: #d1d5db; /* gray-300 */
    padding: 0.25rem 0.5rem 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    white-space: pre-wrap; /* Allows wrapping of long lines */
    display: inline-block;
    font-size: 85%;
}

/* ------------------------------------------------------------ */
/* normal                                                       */
/* ------------------------------------------------------------ */
.normal ol {
    list-style-type: style;
    margin-left: 20px;
}

.normal p {
    padding: 5px;
    margin-bottom: 5px;
    margin-top: 0px;
}

.normal h1 {
    font-size: 1.75rem; /* text-4xl */
    font-weight: 600;
    border-bottom: 1px solid #e5e7eb; /* gray-200 */
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    margin-top: 0px;
}
.normal h2 {
    font-size: 1rem; /* text-2xl */
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: .5rem;
}

.normal h3 {
    font-size: .9rem;
    font-weight: 600;
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 0px;
    padding-bottom: 0px;
    color: #555;
}

.normal pre {
    color: #ff9900;
    background-color: #333333;
    padding: 5px 5px 0px 5px;
    border-radius: 5px;
    font-weight: 600;
    margin-bottom: 5px;
    display: inline-block;
    font-size: 1em;
    line-height: 1.25em;
    white-space: pre;
    margin-top: 0px;
}


.normal a {
    text-decoration: none;
}

.normal li {
    margin-bottom: .25em;
}

.normal ul {
   margin-bottom: .5rem;
}

.normal a:hover {
    font-weight: 600;
    color: #ff9900;
}

.normal code {
    color: #ff9900;
    background-color: #333;
    font-weight: 600;
    padding: 3px 3px 0px 3px;
    border-radius: 3px;
    font-family: monospace;
    line-height: 1.25em;
    margin-left: 0px;
}

.wink-wink {
    font-style: italic;
    font-size: 80%;
    margin-top: 0px;
    margin-left: 20px;
    padding: 0px !important;
}

.code-example {
    float: left;
}

.example-container {
    margin: 0px;
    padding: 0px !important;
    background-color: #333;
    border-radius: 5px;
    display: inline-block;
}

.copy-button {
    text-align: right;
    padding: 5px;
    margin: 5px;
}


.tagline {
  display: block;
  font-style: italic;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.5rem;
  color: #555555;
}

.notes {
    border: 1px;
    border-color: #555;
    background-color: #eee;
    border-style: solid;
    padding: 15px 8px 15px 8px;
    border-radius: 6px;
}

.white-papers-date {
}


/* --- Fix for Bulleted Lists --- */
#main-content ul {
    list-style-type: disc; /* This brings back the bullets */
    padding-left: 2rem;    /* This adds the indentation */
}

#main-content ul li {
    margin-bottom: 0.5rem; /* Adds some spacing between list items */
}


