:root {
	--bg: #090e35;
	--h1: #f47297;
    --h1-shadow: #240022;
	--h2: #cf88c6;
	--alink: #D594D1;
	--avisited: #9E81CF;
	--ahover: #D594D1;
	--aactive: #AD4CB3;
	--atags: #D594D1;
	--gg: #C10FF2;
	--fg: #734da3;
	--border: #512b81;
	--articlebg: #240022;
    --bg-tags: #240022;
}
/* colors --
    1. #090e35
    2. #59328f
    3. #eb4488
    4. #eb6e66
    5. #e14d5e

    chatgpt suggestions --
    #081c42 - a dark navy blue that complements the deep blue of #090e35
    #6a4c93 - a rich purple that pairs well with the muted purple of #59328f
    #f47297 - a bold pink that coordinates with the vibrant pink of #eb4488
    #f79a8f - a soft peach that complements the warm red tones of #eb6e66
    #ed5c6e - a bright red that pairs well with the bold red of #e14d5e
*/

/*this is a test*/

body {
	font-style: sans-serif ;
	background: var(--bg);
    background-image: url("./bee_pattern.png");
	color: var(--fg);
}

a:link {
	color: var(--alink);
	text-decoration: none;
}

a:visited {
	color: var(--avisited);
	text-decoration: none;
}

a:hover {
	color: var(--ahover);
	text-decoration: underline;
}

a:active {
	color: var(--aactive);
	text-decoration: underline;
}

a.tags:link {
	text-decoration: none;
	letter-spacing: 2.5px;
	color: var(--atags);
}

main {
	max-width: 800px ;
	margin: auto ;
}

main > article {
	/*background: var(--articlebg);*/
    background: rgba(3.5, 5.5, 20.8, 0.9);
	margin-bottom: 0 ;
	padding: 2em ;
	border-color: var(--border);
	border-width: 0.5em 0.0em 0.5em 0.0em ;
	border-style: double ;
	border-radius: 15px ;
	margin: auto ;
}

hr {
	height: 4px;
	margin-bottom: 0;
	border-width: 0em 0em 0.4em 0em;
	border-radius: 15px;
	/*background-color: var(--articlebg);*/
    background: rgba(3.5, 5.5, 20.8, 0.0);
	border-color: var(--border);
}

img
{
	display: block;
	margin: 0.7rem auto; /* you can replace the vertical '0.7rem' by
                            whatever floats your boat, but keep the
                            horizontal 'auto' for this to work */
    /* whatever else styles you fancy here */
	max-width: 100%;
}

header h1 {
	color: var(--h1);
	text-align: center ;
	letter-spacing: 4px;
	text-transform: lowercase;
	text-shadow:
        2px 2px 5px var(--h1-shadow),
        2px -2px 5px var(--h1-shadow),
        -2px 2px 5px var(--h1-shadow),
        -2px -2px 5px var(--h1-shadow);
}

body h2 {
	color: var(--h2);
	text-align: center;
	letter-spacing: 3px;
	text-transform: lowercase;
}

h2 a {
	color: var(--h2);
}
h2 a:visited {
	color: var(--h2);
}

footer {
	text-align: center ;
	clear: both ;
}

/* For TAGLIST.HTML */
.taglist {
	text-align: center ;
	clear: both ;
	letter-spacing: 2.5px;

    /*background-color: var(--bg-tags);*/
    background: rgba(9, 14, 53, 0.65);
    /*background: var(--bg);*/

    margin-bottom: 0 ;
    border: 2px solid var(--bg);
	border-radius: 5px ;
	margin: auto ;

}

.highlight pre {
    overflow: auto;
    white-space: pre;
    background-color: transparent !important; /* Set background to transparent */
    border: none; /* Remove border */
    padding: 0; /* Remove padding */
    margin: 0; /* Adjust margin if needed */
}

.highlight pre code {
    display: block; /* Ensure the code block takes the full width */
    background-color: var(--bg-tags);
    margin: 1em 0;
    border-radius: 4px;
    border: 1px solid var(--border);
    padding: 1em; /* Add padding for better readability */
    width: 100%; /* Make the code block stretch to the full width */
    box-sizing: border-box; /* Include padding and border in the element's total width */
}

code {
  display: inline-block;
  background-color: var(--bg-tags);
  margin: 1em 0;
  border-radius: 4px;
  border: 1px solid var(--border);
  /*width: 100%;
  box-sizing: border-box;*/
}

p code {
  display: inline;
  padding: 0;
  margin: 0;
}

table {
  border-collapse: collapse;
  margin: 1rem 0;
  width: 100%;
}

thead {
  background-color: rgba(var(--border), 1);
  color: var(--h2);
}

thead th {
  padding: 0.5rem;
  text-align: left;
  font-size: 0.9rem;
  text-transform: lowercase;
  text-align: center;
}

tbody td {
  padding: 0.5rem;
  border-bottom: 1px solid var(--border);
}

tbody td:first-child {
  text-align: center;
}

tbody td:last-child {
  text-align: left;
}

tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 767px) {
  thead {
    display: none;
  }

  tbody td {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    border-bottom: none;
    position: relative;
  }

  tbody td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 0.5rem;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: lowercase;
  }
}

/* For NEXTPREV.HTML */
#nextprev {
	/* The container for both the previous and next articles. */
}
#prevart {
	float: left ;
	text-align: left ;
}
#nextart {
	float: right ;
	text-align: right ;
}
#nextart,#prevart {
	max-width: 33% ;
}
