/* 
Eric Meyer’s CSS Reset v2.0, which is a well-known and widely used global reset. 
It's designed to strip out all default browser styles so you start from a completely clean slate. 
    http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline; 
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	}
/*
_________________________________________________________________________________________________

End of Meyer’s CSS Global Reset  
_________________________________________________________________________________________________
*/

body {
	font-family: 'DejaVu Sans', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    background-color: #fff;
    color: #333; /* Dark grey for text softens contrast: easier and less harsh on eye without sacrificing readability*/
    padding: 0 1.5rem 0 1.5rem;
}

a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    background-color: #4CAF50;
    border-radius: 5px;
}

a:hover {
    background-color: #45a049;
}

/* Styles for disabled links */
.disabled {
    color: grey;
    pointer-events: none;
    text-decoration: none;
}

h1, h2, h3, h4 {
    font-weight: 600;
    padding: 0.2em 0;
    margin: 0.5em 0;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.2rem; }

p {
    line-height: 1.4;
    padding: 0.5em 0;
    margin: 0;
}

/* Tables: basic styling */
table {
    border-collapse: collapse;
    width: auto;
    max-width: 100%;
    margin: 1.5rem auto;
    font-size: 0.75rem;
  }
  
  th, td {
    border: 1px solid #ccc;
    padding: 0.5rem;
    text-align: left;
  }
  
  th, dt {
    font-weight: bold;
  }
  
  /* List indentation */
  dl, ul, ol {
    margin-left: 1.5rem;
    padding-left: 0;
  }
  
  dl dl, dl ol, dl ul,
  ul ul, ul ol, ul dl, 
  ol ul,  ol ol,  ol dl {
    margin-left: 1.5rem;
  }

.text-center { text-align: center; }
.hidden { display: none; }
.flex { display: flex; }

/* Global typography tweaks for smaller screens */
@media (max-width: 600px) {
    body {
        font-size: 0.95rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
}
