iframe {
  border: none;
}

body {
  height: 100%;
  overflow: hidden;
}

html {
  height: 100%;
  background-color: rgb(28, 31, 34);
  overflow: hidden;
}

button {
  background-color: rgb(44, 49, 53);
  color: white;
  border: none;
}

button[buttonIconType=CROSS] {
  top: 8px !important;
  right: 8px !important;
  transform: rotateZ(45deg) !important;
  font-size: 30px !important;
  background-color: rgba(0, 0, 0, 0) !important;
  color: white !important;
}

button[buttonIconType=CROSS]:hover {
  background-color: rgba(0, 0, 0, 0) !important;
  color: rgb(82, 90, 95) !important;
}

button[buttonIconType=CROSS]:active {
  background-color: rgba(0, 0, 0, 0) !important;
  color: rgb(30, 34, 37) !important;
}

button[selected] {
  background-color: rgb(21, 23, 25);
}

button:not([disabled]):hover {
  background-color: rgb(62, 70, 75);
}

button:not([disabled]):active {
  background-color: rgb(30, 34, 37);
}

option, select {
  background-color: rgb(44, 49, 53);
  color: white;
  border: none;
  height: 40px;
  outline: none;
}

input {
  background-color: rgb(44, 49, 53);
  color: white;
  border: none;
  outline: none;
  font-size: 16px;
  border-radius: 10px;
}

h1, h2, h3, h4, h5, h6, span, p, label {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

::-webkit-scrollbar {
  width: 10px;
  border-radius: 5px;
}

::-webkit-scrollbar-track:hover {
  background-color: rgb(50, 50, 50);
  width: 10px;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(120, 120, 120);
  width: 10px;
  border-radius: 5px;
}

:not(:hover)::-webkit-scrollbar {
  display: none;
}

#addWork {
  width: 50px !important;
  height: 50px !important;
  font-size: 30px;
  border-radius: 100%;
  border: 1px solid dimgray;
  padding: 0px;
  margin: 0px;
}

#taskbar {
  width: 100%;
  height: 30px;
  min-height: 30px;
  display: flex;
  overflow: hidden;
  margin-bottom: inherit;
}

#taskbar button {
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  float: left;
}

#notPayedBtn {
  border-right: 1px solid rgb(160, 160, 160);
}

#alreadyPayedBtn {
  border-right: 2px solid rgb(160, 160, 160);
}

* {
  --gap: 10px;
}

#menu {
  width: auto !important;
  height: 50px !important;
  position: fixed;
  bottom: 40px;
  right: 10px;
  display: flex;
}

#works {
  width: 100%;
  height: auto;
  color: white;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

#works tr {
  --height: calc(50px - var(--gap));
  height: calc(var(--height) + var(--gap));
}

#theadTime {
  width: auto;
  height: 100%;
}

#theadDate {
  width: 20%;
}

#theadStart {
  width: 20%;
}

#theadStop {
  width: 20%;
}

#theadWorkHours {
  width: 10%;
}

#theadPayed {
  width: 60px;
}

#theadDelete {
  width: 60px;
}

.timeSpan, .dateText, .startBtn, .stopBtn, .workHoursSpan {
  width: calc(100% - var(--gap));
  font-size: 20px;
  height: var(--height);
}

.workHoursSpan {
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}

.timeSpan {
  font-size: 25px;
}

.timeSpan[left] {
  float: left;
  text-align: start;
  padding-left: var(--gap);
}

.timeSpan[right] {
  float: right;
  text-align: center;
}

.spacerDiv {
  width: 100%;
  display: flex;
}

#action {
  width: 50px;
  height: 50px;
  float: left;
  margin-right: 10px;
  align-self: center;
  font-size: 30px;
  border-radius: 100%;
  border: 1px solid dimgray;
  padding: 10px;
}

#currentStateOfAction {
  width: 100%;
  height: 100%;
}

#frame {
  width: 100%;
  height: auto;
  max-height: 93%;
  min-height: 200px;
  overflow: hidden;
  overflow-y: auto;
}

#frame thead {
  position: sticky;
  top: 0px;
  z-index: 10;
  background-color: rgb(28, 31, 34);
  border-color: rgb(28, 31, 34);
  border-width: 20px;
  height: 40px;
}

#frame thead th {
  font-size: 15px;
  font-weight: bolder;
}

/* Bezahlt Checkbox */
.payedCell {
  justify-content: center;
  align-items: center;
}

/* The erledigtField */
.payedCheckbox {
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hide the browser's default checkbox */
.payedCheckbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  height: 25px;
  width: 25px;
  background-color: rgb(44, 49, 53);
}

.payedCheckbox input:disabled ~ .checkmark {
  opacity: 0.4;
}

/* On mouse-over, add a grey background color */
.payedCheckbox:hover input ~ .checkmark {
  background-color: rgb(62, 70, 75);
}

/* When the checkbox is checked, add a blue background */
.payedCheckbox input:checked ~ .checkmark {
  background-color: green;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.payedCheckbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.payedCheckbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* Delete Button */
.deleteCell {
  display: grid;
  justify-content: center;
  align-items: center;
}

.deleteBtn {
  color: red;
  font-size: 35px;
  background: rgb(28, 31, 34);
  border: 0px;
  width: 50px;
  height: 50px;
}

.deleteBtn:hover {
  background-color: rgb(28, 31, 34) !important;
  color: rgb(255, 96, 96) !important;
}

.deleteBtn:active {
  background-color: rgb(28, 31, 34) !important;
  color: darkred !important;
}

#settingsIcon {
  height: auto;
  width: 23px;
  aspect-ratio: 1/1;
}

#settings {
  aspect-ratio: 1/1 !important;
  width: 35px !important;
  float: right;
}

#linkToHono {
  position: fixed;
  bottom: 10px;
  left: 10px;
  text-decoration: none;
}/*# sourceMappingURL=main.css.map */