/* FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
.content-box {
  background-color: #b70f26;
  width: 70%;
  margin: 0 auto;
  padding: 20px;
  
  /* This makes it at least as tall as the screen */
  min-height: 80vh; 
}
  .container {
  display: grid;
  grid-template: 
    "header header" /* row 1 */
    "sidebar main"  /* row 2 */
    "footer footer" /* row 3 */
    / 1fr 2fr;     /* column widths (1fr = one fraction, 2fr = two fractions) */
  grid-gap: 10px; /* Optional: adds space between areas */
}
/* Style for the main content area to allow flexible positioning */
.content-box {
  /* This ensures the content area takes up the remaining screen space next to the sidebar */
  flex-grow: 1;
  padding: 20px; /* Add some padding so the chat isn't right against the edges */
  display: flex;
  justify-content: center; /* Horizontally center the child elements */
  align-items: center; /* Vertically center the child elements */
  /* You may need to set a height for the content-box if it doesn't fill the screen naturally */
  min-height: 80vh; /* Example height to make centering visible */
}
body {
    /* Optional: Remove default margins if any, to give the iframe more space */
    margin: 0;
    padding: 0;
}

.content-box {
    /* Ensure the main content container can take up more space */
    width: 100%;
    /* Add appropriate margins to prevent overlap with the sidebar, e.g., 220px if the sidebar is 200px wide */
    margin-left: 220px;
    padding: 20px; /* Add some padding around the chat box */
    box-sizing: border-box; /* Ensures padding doesn't add to the total width */
}

#cbox-container {
    /* The container for the iframe should also have a defined size */
    width: 100%;
    height: 80vh; /* Use 80% of the viewport height (vh) for a large chat */
    /* You can adjust 80vh to a fixed pixel value (e.g., 800px) or 100vh if you want it full-screen */
}

/* Target the iframe directly within its container */
#cbox-container iframe {
    width: 100%; /* Makes the iframe fill the width of its container */
    height: 100%; /* Makes the iframe fill the height of its container */
    border: none; /* Removes the default iframe border */
}
/* Style for the new Cbox container */
#cbox-container {
  /* Defines the container as an inline-block that users can resize */
  display: inline-block;
  /* 'both' allows resizing horizontally and vertically */
  resize: both;
  /* Adds scrollbars if content overflows during resizing */
  overflow: auto;
  /* Optional: Adds a border to make the resizable handle visible */
  border: 1px solid #ccc;
  /* Sets an initial maximum size */
  max-width: 800px;
  max-height: 1000px;
  /* Sets an initial minimum size */
  min-width: 300px;
  min-height: 200px;
  /* Optional: Add a handle icon for better usability */
  /* This pseudo-element adds a visual indicator for resizing */
  position: relative;
}

/* Optional: Add a visual indicator for the resize handle (e.g., using CSS content) */
#cbox-container::after {
  content: "⇲"; /* Unicode character for a resize handle */
  position: absolute;
  bottom: 0px;
  right: 0px;
  color: #ccc;
  padding: 2px;
  cursor: se-resize; /* Cursor type for south-east resizing */
}


/* Ensures the iframe inside the container uses 100% of the *container's* current size */
#cbox-container iframe {
  width: 100%;
  height: 100%;
  display: block; /* Removes extra space below the iframe */
}

/* Ensure main body layout uses flexbox if it's not already */
body {
  display: flex;
  min-height: 100vh; /* Makes sure the body spans the full height of the viewport */
  margin: 0;
}
/* Assign elements to the grid areas */
header { grid-area: header; background: #eee; padding: 10px; }
aside    { grid-area: sidebar; background: #ddd; padding: 10px; }
main     { grid-area: main; background: #fff; padding: 10px; }
footer   { grid-area: footer; background: #eee; padding: 10px; }
.sidebar {
  position: fixed;
  z-index: 999; /* Higher number = closer to the front */
  background: #fff; /* Makes the sidebar solid */
}
.sidebar {
  position: fixed; 
  left: 0;
  top: 0;
  width: 200px;    
  height: 100%;    
  background: #cc0202;
  padding: 20px;
  z-index: 10000;
  border-right: 1px solid #ccc;
  color: black; /* Ensures text is readable against the red */
}

/* IMPORTANT: Add this to your content box so it doesn't hide behind the sidebar */
.content-area {
  margin-left: 250px; 
}
/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */

/* Variables are used like this: var(--text-color) */
:root {
  /* Background Colors: */
  --background-color: #6c1025;
  --content-background-color: #b70f26;
  --sidebar-background-color: #ff979e;

  /* Text Colors: */
  --text-color: #000000;
  --sidebar-text-color: #000000;
  --link-color: #ff0000;
  --link-color-hover: #ec0000b7;

  /* Text: */
  --font: Comic Sans, cursive;
  --heading-font: Open Sans, sans-serif;
  --font-size: 14px;

  /* Other Settings: */
  --margin: 10px;
  --padding: 20px;
  --border: 2px solid #000000;
  --round-borders: 0px;
  --sidebar-width: 200px;
}

/* -------------------------------------------------------- */
/* BASICS */
/* -------------------------------------------------------- */

body {cursor: url(untitled design), default;}
* {
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  font-size: var(--font-size);
  margin: 0;
  padding: var(--margin);
  color: var(--text-color);
  font-family: var(--font);
  line-height: 1.2;
  background: var(--background-color);
  background-image: url("");
  
}

::selection {
  /* (Text highlighted by the user) */
  background: rgba(0, 0, 0, 0.2);
}

mark {
  /* Text highlighted by using the <mark> element */
  text-shadow: 1px 1px 4px var(--link-color);
  background-color: inherit;
  color: var(--text-color);
}

/* Links: */
a {
  text-decoration: underline;
}

a,
a:visited {
  color: var(--link-color);
}

a:hover,
a:focus {
  color: var(--link-color-hover);
  text-decoration: none;
}

/* -------------------------------------------------------- */
/* LAYOUT */
/* -------------------------------------------------------- */

.layout {
  width: 100%;
  display: grid;
  grid-gap: var(--margin);
  grid-template: "header header" auto "main rightSidebar" auto "footer footer" auto / auto var(--sidebar-width);
  /* Confused by the grid? Check out my tutorial: https://petrapixel.neocities.org/coding/positioning-tutorial#grid */
}

main {
  grid-area: main;
  overflow-y: auto;
  padding: var(--padding);
  background: var(--content-background-color);
  border: var(--border);
  border-radius: var(--round-borders);
}

/* -------------------------------------------------------- */
/* HEADER */
/* -------------------------------------------------------- */

header {
  grid-area: header;
  font-size: 1.2em;
  border: var(--border);
  border-radius: var(--round-borders);
  background: var(--content-background-color);
}

.header-content {
  padding: var(--padding);
}

.header-title {
  font-family: var(--heading-font);
  font-size: 1.5em;
  font-weight: bold;
}

.header-image img {
  width: 100%;
  height: auto;
}

/* -------------------------------------------------------- */
/* SIDEBARS */
/* -------------------------------------------------------- */

aside {
  grid-area: aside;
  border: var(--border);
  border-radius: var(--round-borders);
  overflow: hidden;
  background: var(--sidebar-background-color);
  padding: var(--padding);
  color: var(--sidebar-text-color);
}

.left-sidebar {
  grid-area: leftSidebar;
}

.right-sidebar {
  grid-area: rightSidebar;
}

.sidebar-title {
  font-weight: bold;
  font-size: 1.2em;
  font-family: var(--heading-font);
}

.sidebar-section:not(:last-child) {
  margin-bottom: 3em;
}

.sidebar-section ul,
.sidebar-section ol {
  padding-left: 1.5em;
}

.sidebar-section > *:not(p):not(ul):not(ol):not(blockquote) {
  margin-top: 10px;
}

/* Sidebar Blockquote: */

.sidebar-section blockquote {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 1em 0;
  border-radius: 10px;
  overflow: hidden;
}

.sidebar-section blockquote > *:first-child {
  margin-top: 0;
}

.sidebar-section blockquote > *:last-child {
  margin-bottom: 0;
}

/* Site Button: */

.site-button {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-button textarea {
  font-family: monospace;
  font-size: 0.7em;
}

/* -------------------------------------------------------- */
/* FOOTER */
/* -------------------------------------------------------- */

footer {
  grid-area: footer;
  border: var(--border);
  border-radius: var(--round-borders);
  overflow: hidden;
  font-size: 0.75em;
  padding: 15px;
  background: var(--content-background-color);
  display: flex;
  justify-content: center;
}

footer a,
footer a:visited {
  color: var(--link-color);
}

footer a:hover,
footer a:focus {
  color: var(--link-color-hover);
}

/* -------------------------------------------------------- */
/* NAVIGATION */
/* -------------------------------------------------------- */

nav {
  margin-bottom: 3em;
}

nav .sidebar-title {
  margin-bottom: 0.5em;
}

nav ul {
  margin: 0 -5px;
  padding: 0;
  list-style: none;
  user-select: none;
}

nav ul li {
  margin-bottom: 0;
}

nav > ul li > a,
nav > ul li > strong {
  display: inline-block;
}

nav > ul li > a,
nav > ul li > details summary,
nav > ul li > strong {
  padding: 5px 10px;
}

nav > ul li > a.active,
nav > ul li > details.active summary {
  font-weight: bold;
}

nav ul summary {
  cursor: pointer;
}

nav ul ul li > a {
  padding-left: 30px;
}



/* -------------------------------------------------------- */
/* CONTENT */
/* -------------------------------------------------------- */

main {
  line-height: 1.5;
}

main a,
main a:visited {
  color: var(--link-color);
}

main a:hover,
main a:focus {
  color: var(--link-color-hover);
  text-decoration-style: wavy;
}

main p,
main .image,
main .full-width-image,
main .two-columns {
  margin: 0.75em 0;
}

main ol,
main ul {
  margin: 0.5em 0;
  padding-left: 1.5em;
}

main ol li,
main ul li {
  margin-bottom: 0.2em;
  line-height: 1.3;
}

main ol {
  padding-left: 2em;
}

main blockquote {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 1em 0;
  border-radius: 10px;
}

main pre {
  margin: 1em 0 1.5em;
}

main code {
  text-transform: none;
}

main center {
  margin: 1em 0;
  padding: 0 1em;
}

main hr {
  border: 0;
  border-top: var(--border);
  margin: 1.5em 0;
}

/* HEADINGS: */

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  font-family: var(--heading-font);
  margin-bottom: 0;
  line-height: 1.5;
}

main h1:first-child,
main h2:first-child,
main h3:first-child,
main h4:first-child,
main h5:first-child,
main h6:first-child {
  margin-top: 0;
}

main h1 {
  font-size: 1.5em;
}

main h2 {
  font-size: 1.4em;
}

main h3 {
  font-size: 1.3em;
}

main h4 {
  font-size: 1.2em;
}

main h5 {
  font-size: 1.1em;
}

main h6 {
  font-size: 1em;
}

/* COLUMNS: */

.two-columns {
  display: flex;
}

.two-columns > * {
  flex: 1 1 0;
  margin: 0;
}

.two-columns > *:first-child {
  padding-right: 0.75em;
}

.two-columns > *:last-child {
  padding-left: 0.75em;
}

/* -------------------------------------------------------- */
/* CONTENT IMAGES */
/* -------------------------------------------------------- */

.image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.full-width-image {
  display: block;
  width: 100%;
  height: auto;
}

.images {
  display: flex;
  width: calc(100% + 5px + 5px);
  margin-left: -5px;
  margin-right: -5px;
}

.images img {
  width: 100%;
  height: auto;
  padding: 5px;
  margin: 0;
  overflow: hidden;
}

/* -------------------------------------------------------- */
/* ACCESSIBILITY */
/* -------------------------------------------------------- */

/* please do not remove this. */

#skip-to-content-link {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  line-height: 1;
  font-size: 1.25rem;
  background-color: var(--content-background-color);
  color: var(--text-color);
  transform: translateY(-3rem);
  transition: transform 0.1s ease-in;
  z-index: 99999999999;
}

#skip-to-content-link:focus,
#skip-to-content-link:focus-within {
  transform: translateY(0);
}

/* -------------------------------------------------------- */
/* MOBILE RESPONSIVE */
/* -------------------------------------------------------- */

/* CSS Code for devices < 800px */
@media (max-width: 800px) {
  body {
    font-size: 14px;
  }

  .layout {
    width: 100%;
    grid-template: "header" auto  "leftSidebar" auto "main" auto "footer" auto / 1fr;
    /* Confused by the grid? Check out my tutorial: https://petrapixel.neocities.org/coding/positioning-tutorial#grid */
  }

  
  .right-sidebar { 
    display: none;
  }

  aside {
    border-bottom: 1px solid;
    padding: 9px;
    font-size: 0.9em;
  }

  header nav {
    display: block !important;
  }
  nav {
    padding: 0;
  }

  nav > ul {
    padding-top: 0.5em;
  }

  nav > ul li > a,
  nav > ul li > details summary,
  nav > ul li > strong {
    padding: 0.5em;
  }

  main {
    max-height: none;
    padding: 15px;
  }

  .images {
    flex-wrap: wrap;
  }

  .images img {
    width: 100%;
  }

  #skip-to-content-link {
    font-size: 1rem;
  }
}
