/* style001.css */

body
{
    margin: 1px 5px;
    background-color: rgb(0, 0, 0);
    font-family: Arial;
    color: rgb(255, 255, 255);
}

a:link
{
    color: rgb(170, 170, 170);
}

a:hover
{
    color: rgb(255, 255, 255);
}

a:visited
{
    color: rgb(170, 170, 170);
}

button
{
    background-color: rgb(0, 77, 129);
    margin-left: 2px;
    margin-right: 2px;
    margin-top: 1px;
    margin-bottom: 1px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(100, 100, 255);
    border-radius: 4px;
    padding: 2px 5px;
    opacity: 1.0;
    font-size: 12px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    text-align: left;
    cursor: pointer;
    width: 90%;
    /*line-height: 12px;*/
}

button:hover
{
    background-color: rgb(6, 31, 47);
    border-color: rgb(0, 255, 255);
    color: rgb(0, 255, 255);
}

button:active
{
    color: rgb(255, 0, 255);
}

details
{
    color: rgb(255, 255, 255);
}

summary
{
    color: rgb(255, 255, 255);
}

summary:hover
{
    color: rgb(0, 255, 255);
}

details > summary
{
    list-style: none; /* remove default triangle */
    cursor: pointer;
}

details > summary::before
{
    content: '▶️ '; /* closed icon */
}

details[open] > summary::before
{
    content: '🔽 '; /* open icon */
    /*background-color: rgb(140,140,140);*/
}

/* make the scrollbar thinner */
::-webkit-scrollbar {
  width: 8px; /* Adjust the thickness here */
}

/* style the scrollbar track (background of the scrollbar) */
::-webkit-scrollbar-track {
  background: #2c3e50; /* Darker background for contrast */
}

/* style the scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background-color: #3498db; /* Bright blue */
  border-radius: 4px; /* Rounded corners for a nice look */
  border: 2px solid transparent; /* adds some space around thumb */
}

/* hover effect for thumb */
::-webkit-scrollbar-thumb:hover {
  background-color: #2980b9; /* Slightly darker on hover */
}

h1
{
    border-bottom: 1px solid #ccc; padding-bottom: 10px;
    margin: 1px;
    font-size: 20px;
    font-weight: bold;
    color: rgb(0, 255, 255);
}

h2
{
    font-size: 20px;
    margin: 1px;
}

h2:hover
{
    background-color: rgb(30, 30, 30);
}

h3
{
    margin-left: 15px;
}

p
{
    margin: 1px;
}

.symbol
{
    display: inline-flex; /* like inline-block, but allows centering tools */
    align-items: center; /* centers vertically */
    justify-content: center; /* centers horizontally */

    width: 40px; /* slightly wider to give symbols room */
    height: 20px; /* set height equal to width for a square */

    padding: 5px;
    border: solid 0.5px rgb(0, 255, 255);
    border-radius: 8px;
    background-color: rgb(0, 0, 0);
    font-size: 25px;
    color: rgb(0, 255, 255);
}

.symbol:hover
{
    background-color: rgb(0, 14, 163);
}

.center
{
    display: flex;
    justify-content: center;
    align-items: center;
}

code
{
    font-family: Arial;
    font-size: 24px;
    font-weight: bold;
}

/* The Main Datapad Container */
.technical-specs {
    background-color: rgb(40, 40, 40);
    border-left: 5px solid rgba(0, 255, 255, 0.5);
    padding: 5px 10px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.technical-specs h4 {
    margin: 0px;
}

.technical-specs h2 {
    color: rgb(0, 255, 255);
}

.technical-specs pre {
    margin: 0px;
}

.tech-table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.tech-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #44475a;
}
.tech-table td:first-child {
    width: 30%;
    color: rgb(255, 255, 0);
}
.tech-table td:last-child {
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.largeDivider
{
    height: 20px;
    background-color: rgb(40, 40, 40);
}

hr
{
    margin: 1px;
    width: 100%;
}

/* Syntax Highlighting Colors */

.green
{
    color: rgb(150, 200, 150);
}

.pink
{
    color: pink;
}

.skyblue
{
    color: skyblue;
}

.yellow
{
    color: yellow;
}

.lightGray
{
    color: rgb(200, 200, 200);
}

.magenta
{
    color: rgb(255, 138, 255);
}

.objects
{
    color: rgb(155, 195, 255);
}

.flowControl
{
    color: magenta;
}

/*----*/

/* Dedicated to God the Father */
/* All Rights Reserved Christopher Andrew Topalian Copyright 2000-2026 */
/* https://github.com/ChristopherTopalian */
/* https://github.com/ChristopherAndrewTopalian */
/* https://sites.google.com/view/CollegeOfScripting */

