html, body {
    margin: 0;
    padding: 0;
    height: 100%; /* Ensure html and body take full height */
}

table {
    width: 100%; /* Make table span full width */
    height: 100%; /* Make table span full height */
    border-collapse: collapse; /* Optional: remove spacing between cells */
}

th, td {
    padding: 0px; /* Add some padding for content */
    border: 1px solid #ccc; /* Optional: add borders for visibility */
    text-align: left;
}

body {
    font-family: 'Roboto', sans-serif;
}
p {
    font-family: verdana, serif;
}

        .my-text {
            color: #33333;
        }

/* Unvisited link */
a:link {
  color: #333333; /* Off Black */
}

/* Visited link */
a:visited {
  color: #333333; /* Off Black */
}

/* Mouse over link */
a:hover {
  color: #15284C; /* Gold */
}

/* Selected link */
a:active {
  color: #15284C; /* Gold */
}