#reader {
  max-width: 300px;
}

#user-greeting {
  text-align: right;
  margin: 2px;
  font-size: 1.2em;
  color:#095b92;
}

#video {
  max-width: 300px;
  border-radius: 10px;
  background-color: gainsboro;
  margin: 20px auto;
}

#videoContainer {
  position: relative;
  margin: 20px auto;
  max-width: 300px;
}

#videoCaption-container {
  max-width: 300px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
}


#logo-img {
  max-height: 40px;

}

#timesheet-display {
  margin-top: 50px;

}

#header-container {
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.center {
  margin: auto;
  width: 50%;
}

.open-sans-tt {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

* html,
body {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;

}

table {
  border-collapse: collapse;
  width: 100%;
  margin: auto;
}

td {
  background-color: #eefeee;
  border: 4px solid white;
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 2px;
  padding-bottom: 2px;
}

.date-header td {
  background-color: #032c03 !important;
  color: white;

}


.barlow-condensed-thin {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-condensed-extralight {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-condensed-light {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-condensed-regular {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-condensed-medium {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-condensed-semibold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-condensed-bold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-condensed-extrabold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-condensed-black {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-condensed-thin-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-condensed-extralight-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-condensed-light-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-condensed-regular-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-condensed-medium-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-condensed-semibold-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-condensed-bold-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-condensed-extrabold-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-condensed-black-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.hidden {
  display: none;
}


.grid-container {
  display: grid;
  /* Define columns. Here, auto will take available space,
       and max-content will size the second column to its content. */
  grid-template-columns: 1fr max-content;
  /* 1fr for flexible first column, max-content for second */
  /* Or if you only have one item to align right in a single-column grid: */
  /* grid-template-columns: 1fr; */
  /* justify-items: end; /* Aligns content of grid item to the end of its cell */

  border: 0px;
  padding: 0px;
  margin-top: 0px;
}

.right-aligned-grid {
  /* When using grid-template-columns: 1fr max-content, no extra alignment needed on the item */
  /* If you used justify-items: end on the container, this would also align right */
  padding: 0px;
  border: 0px;
  justify-self: end;
  /* Aligns this specific item to the end of its grid cell */
}

.delete {
  color:red;
  cursor: pointer;
}