@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@500&display=swap');

.form-control::placeholder{
  color: var(--bs-gray-500);
}

.my-ajax-loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, .5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.bg-logo {
  background-image: url(../img/logo.svg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: left 2vw bottom 2vw;
  background-size: 35vw auto;
}

.my-time-view,
.my-time-view-report {
  position: relative;
  display: grid;
  grid-template-rows: repeat(96, 25px);
  width: 100%;
  height: calc(96 * 25px);
}

.my-time-view > [data-min] {
  cursor: pointer;
}

.my-time-view > [data-min]:hover {
  background: var(--bs-warning-bg-subtle);
}

.my-time-view-report {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.my-time-view-report > section {
  position: relative;
  grid-column: 1;
  padding-left: 3em;
  pointer-events: auto;
}

.my-time-view-report > section [data-trigger="modal"] {
  cursor: pointer;
  height: 100%;
  transition: all linear .3s;
}

.my-time-view-report > section [data-trigger="modal"]:hover {
  opacity: .6;
  box-shadow: 0 0 0 0.25rem var(--bs-warning);
}
