/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set a clean background color */
body {
  margin: 20px;
  padding: 0;
  background-color: #f5f5f5;
  font-family: Arial, sans-serif;
}

/* Set styles for headings */
h1, h2, h3, h4, h5, h6 {
  color: #333333;
  font-weight: bold;
  margin-bottom: 10px;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

/* Set styles for paragraphs */
p {
  color: #555555;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Set styles for tables */
table {
  border-collapse: collapse;
  margin-bottom: 20px;
}

th, td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #dddddd;
}

th {
  background-color: #f5f5f5;
  font-weight: bold;
}

.drawn {
  background-color: #c8f0c8 !important;
  font-weight: bold;
  border: 2px solid #000000;
  padding: 5px;
  display: inline-block;
}

.notdrawn {
  border: 2px solid #000000;
  padding: 5px;
  display: inline-block;
}

.highlight {
  background-color: #f5f5f5;
  font-weight: bold;
}

/* Set styles for links */
a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Admin Menu Styles */
.menu {
  background-color: #333;
  color: #fff;
  width: 200px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  margin-right: 20px; /* Add a margin on the right side */
}

.menu-header {
  padding: 20px;
}

.menu-header h1 {
  color: #fff;
  margin: 0;
  font-size: 24px;
}

.menu-items {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

.menu-items li {
  padding: 10px;
}

.menu-items li a {
  color: #fff;
  text-decoration: none;
}

.menu-items li a:hover {
  background-color: #555;
}

.content {
  margin-left: 220px; /* Set a margin to create space for the menu */
  padding: 20px; /* Add some padding for the content area */
}

/* Added with addition of Wednesday draws */

.drawn-saturday {
    background-color: #c8f0c8 !important;
    font-weight: bold;
    border: 2px solid #000000;
    padding: 5px;
    display: inline-block;
}

.drawn-wednesday {
    background-color: #c8c8f0 !important;
    font-weight: bold;
    border: 2px solid #000000;
    padding: 5px;
    display: inline-block;
}

.not-drawn {
    border: 2px solid #000000;
    padding: 5px;
    display: inline-block;
}