/* lynx.css */

/* General layout settings */
body {
    font-family: monospace, "Courier New", Courier, monospace;
    font-size: 14px;
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
    margin: 0;
    padding: 0;
}

/* Links */
a {
    color: #00FFFF; /* Cyan for unvisited links */
    text-decoration: underline;
}

a:visited {
    color: #800080; /* Purple for visited links */
}

a:active {
    color: #FF0000; /* Red for active links */
}

/* Preformatted text (code blocks, etc.) */
pre, code, kbd, samp {
    background-color: #333333; /* Dark grey background */
    color: #00FF00; /* Bright green text */
    padding: 0.5em;
    border-radius: 3px;
}

/* Focused elements (when navigating with keyboard) */
:focus {
    outline: none; /* Removing default focus outline */
    background-color: #FFFF00; /* Yellow background when focused */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #FFD700; /* Gold for headings */
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color:blue;
}

/* Lists */
ul, ol {
    margin-left: 20px;
    color: #ffffff;
}

li {
    line-height: 1.6;
}

/* Tables */
table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    border: 1px solid #666666;
    padding: 5px;
    color: #ffffff;
    text-align: left;
}

th {
    background-color: #444444; /* Darker background for table headers */
}

/* Form elements */
input, select, textarea {
    font-family: monospace;
    font-size: 14px;
    background-color: #222222; /* Dark background */
    color: #00FF00; /* Green text */
    border: 1px solid #444444;
    padding: 5px;
}

input[type="submit"], input[type="button"], button {
    background-color: #444444; /* Dark background */
    color: #FFFF00; /* Yellow text for buttons */
    border: none;
    padding: 5px 10px;
}

/* General text */
p, blockquote {
    line-height: 1.6;
    color: #ffffff;
}

/* Links when viewed in a terminal-like format */
a {
    color: #00FFFF;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

/* Scrollbar (for browsers that use this) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #555555;
    border-radius: 5px;
}

::-webkit-scrollbar-track {
    background-color: #333333;
}
