html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


/*
    PIET starts here
*/

.CyBlue {
    color: #006699;
}

.CyGreen {
    color: #003300;
}

.CyRed {
    color: #990000;
}


.noauth {
    height: 100%;
}


div.plaque {
    margin: 5px;
    border: 2px solid #ddd;
    padding: 50px 5px 50px 5px;
    font-size: 16px;
    color: #aaa;
    text-align: center;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    background-color: #fefefe;
}

    div.plaque a:link,
    div.plaque a:visited {
        color: #aaa;
        text-decoration: none;
    }

    div.plaque a:hover {
        text-decoration: none;
        font-weight: 700;
        color: #99ee58;
    }

.page-container {
    margin-left: 2em;
    margin-right: 2em;
}

div.bxcontainer {
    padding: 0.5em;
    margin: 0.5em;
    background-color: #fefefe;
    margin-bottom: 20px;
    border: 1px solid lightgray;
    /*    align-items: stretch;
    max-width: 32%;
    min-width: 250px;*/
    min-height: 14em;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}


div.cshadow {
    box-shadow: 0 5px 15px rgba(0,0,0,0.10);
}

    div.cshadow:hover {
        box-shadow: 0 5px 15px rgba(0,0,0,0.30);
    }


.filler {
    padding: 0.5em;
    background-color: #DDD;
}

/* From Perplexity*/
/* By default, inner divs can be horizontal or styled as needed */
.inner-divs {
    display: flex;
    flex-direction: row; /* or whatever default you want */
}

/* When viewport is less than 100px, stack vertically */
@media (max-width: 100px) {
    .inner-divs {
        display: flex !important;
        flex-direction: column !important;
    }
}

/* From Claude:*/
.code-container {
    position: relative;
    margin: 20px 0;
}

.code-block {
    background-color: #2d3748;
    color: #63b3ed;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    font-family: 'Courier New', Monaco, monospace;
    font-size: 14px;
    line-height: 1.5;
    white-space: pre;
    border: 1px solid #4a5568;
}

.copy-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #4a5568;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.2s;
}

    .copy-button:hover {
        background-color: #2d3748;
    }

.copy-success {
    background-color: #38a169 !important;
}


/* Bootstrap override */
.btn {
    width: 100px;
}

