@charset "utf-8";

:root {
    --bg-color: #ffffff;
    --bg-secondary-color: #f3f3f6;
    --color-primary: #14854F;
    --color-lightGrey: #d2d6dd;
    --color-grey: #747681;
    --color-darkGrey: #3f4144;
    --color-error: #d43939;
    --color-success: #28bd14;
    --grid-maxWidth: 120rem;
    --grid-gutter: 2rem;
    --font-size: 1.6rem;
    --text-small: 1.2rem;
    --text-smaller:1.4rem;
    --text-medium: 1.6rem;
    --text-large: 1.8rem;
    --font-color: #333333;
    --font-family-sans: lato,sans-serif;
    --font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
  }

.bg-red,
.dirtree-active {
    background-color: red;
}

.bg-grey,
.dirtree-sibling {
    background-color: gray;
}

.dirtree-folder {
    background-color: rgb(225, 222, 214);
}

/* ## DIRTREE NAV THING ##
 * for the effect of the show/collapse thing */

.hide {
    display: none;
}

.unhide {
    display: inherit;
}

button.navbar-toggle {
    visibility: hidden;
}
.dirtree-inside {
    display: none;
}

/* -inside - display none for IDs like this
 * for the effect of the show/collapse thing */
[id$="-inside"] {
    display: none;
}

.jumbotron .row {
    border-radius: 2rem;
}

header + * {
    margin: 1em auto 0 auto;
}

nav {
    text-transform: capitalize;
}

.navbar {
    display: flex;
    flex-direction: row;
    max-height: 5em;
    margin: auto;
    border: 1px solid transparent;
    font-size: 2rem;
    padding: 0;
}

.col {
    outline: color(from red srgb 255 255 127);
}
.row {
    outline: color(from green srgb 255 255 127);
}

.card {
    outline: color(from blue srgb 255 255 127);
}

.inferior-content {
    background-color: #FEFEFF;
    font-family: Georgia, "Times New Roman", Times, serif;
    margin:0.5rem;
}

.jumbotron .container .card,
.jumbotron .container .col,
.jumbotron + .row .col,
.jumbotron .container .row,
.jumbotron .row .card,
.jumbotron .row .col {
    background-color: #fffe;
    outline-width: 0.1rem;
    outline-color: #666a;
    outline-offset: 0.65em;
    outline-style: double;
    margin:0.5rem;
}


.contentblock {
    background-color:rgba(245, 245, 255, 127);
    padding:0.6rem;
    margin:auto;
}

#tree_basiktheme {
    /* background-color:rgb(26, 28, 31); */
    background-color: aliceblue;
}

[id^='folder-'].dirtree-folder {
    background-color: #14854F;
}

[class$='-chatgpt'] blockquote {
    font-size: var(--text-smaller);
}


#chotatest2-section details.dropdown {
    display:block;
}

.calculonsaid-chatgpt {
    font-family:lato,sans-serif;
    /* background-color:var(--bg-secondary-color); */
    color:var(--color-primary)

}

.yousaid-chatgpt {
/*  font-family: serif; */
    color:var(--color-grey);
    background-color:var(--bg-secondary-color);
}

details summary::after {
    content: "Click to expand";
    margin-left: 0.5em;
    border: solid gray;
    border-width: 0.0em 0.0em 0.1rem 0.1rem;
    border-color: var(--color-primary);
    transform: rotate(45deg);
    transition: transform 0.2s ease-in-out;
}

.is-half-screen {
    min-height:51vh;
    width:100%;
}

body.dark {
	--bg-color: #000;
	--bg-secondary-color: #131316;
	--font-color: #f5f5f5;
	--color-grey: #ccc;
	--color-darkGrey: #777;
}

ul { list-style-type: none; padding-left: 1em; }
    li { margin: 2px 0; }
    .directory > span::before {
      content: "📁 ";
      cursor: pointer;
    }
    .file::before {
      content: "📄 ";
    }
    .directory.collapsed > ul {
      display: none;
    }
    /* #tree-container > ul li {
      display: block;
    } */
    ul li {
      display: block;
    }
    #tree-container ul li.directory:first-child > ul {
    display:block;
    background-color: bisque;
}