/* style001.css */

body
{
    background-color: rgb(100, 100, 100);
}

b
{
    font-weight: 700;
}

hr
{
    height: 7px;
    width: 100%;
    margin-top: 1px;
    margin-bottom: 1px;
    background-color: rgb(0, 0, 0);
    border: solid 1px rgb(0, 0, 0);
    color: rgb(0, 0, 0);
}

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-left: 7px;
    padding-right: 7px;
    padding-top: 1px;
    padding-bottom: 1px;
    opacity: 1.0;
    font-size: 12px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    text-align: center;
    cursor: pointer;
}

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);*/
}

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

/* 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 */
}

.dedicationStyle
{
    padding: 2px;
    font-family: arial;
    font-size: 28px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
}

.titleStyle
{
    margin: 1px;
    padding-top: 1px;
    padding-bottom: 1px;
    font-family: arial;
    font-size: 32px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
}

.descriptionStyle
{
    padding-left: 12px;
    padding-right: 12px;
    color: rgb(255, 255, 255);
    font-family: arial;
    font-size: 20px;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
}

/*----*/

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

