/* This block is for the table in calendar.py */
table {
    border-collapse: collapse;
    background: white;
    color: black;
    border: 1px solid black;
}
th.weekdays {
    color: white; background: purple;
}
th, td {
    font-weight: bold;
    border: 1px solid black;
}


/* This is to highlight current day in calendar.py*/
td.cell-curr-date {
  background-color: #ced4da;
}

/* This dot means there's data on this specific date */
td.dot-cell::before {
content: "• "; /* Insert a bullet character and a space */
color: #820A1E; /* Customize color */
font-size: 1.3em; /* Customize size */
}

/* This dot means there's a note on this specific date */
td.dot-cell-notes::after {
content: " •"; /* Insert a bullet character and a space */
color: #FF4F00; /* Customize color */
font-size: 1.3em; /* Customize size */
}

/* This for the Welcome message on the navbar */
.nav-welcome {
  --bs-nav-welcome-padding-x: 1rem;
  --bs-nav-welcome-padding-y: 0.5rem;
  --bs-nav-welcome-font-size: 1rem; /* RFS is used to make this responsive */
  --bs-nav-welcome-font-weight: 400;
  --bs-nav-welcome-color: var(--bs-link-color); /* Typically a dark gray */
  --bs-nav-welcome-hover-color: var(--bs-link-hover-color); /* A slightly darker shade */
  --bs-nav-welcome-disabled-color: var(--bs-secondary-color); /* A lighter gray */

  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}


