body > main,
body > footer {
  max-width: 700px;
  margin-inline: auto;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.header img {
  width: 60px;
  margin-bottom: 10px;
}

article {
  margin: 30px;
}

label {
  font-weight: bold;
}

.user-panel {
  display: flex;
  justify-content: space-between;
}

.times {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.excel-download button {
  width: 100%;
}

#time {
  display: flex;
  align-items: center;
}

#time .fa-clock {
  margin-right: 3px;
}

#divider {
    animation: blink 1.2s step-end infinite;
}

.red {
  margin-left: 5px;
}

.red a {
  text-decoration: none;
  color: red;
}

.bold {
  font-weight: bold;
}

.warning {
  border-radius: 10px;
  margin: 0;
}

.warning header {
  background-color: #ff6a4a;
  color: white;
  display: flex;
  align-items: center;
}

.warning header img {
  width: 20px;
  margin-right: 5px;
}

#deleteDBDialog header div {
  display: flex;
  align-items: center;
}

#deleteDBDialog header div img {
  width: 20px;
  margin-right: 5px;
}

.red_button {
  background-color: #ff6a4a;
  border: #ff6a4a;
}

.red_button:is(:hover, :active, :focus) {
  background-color: #9a0202;
  border-color: #9a0202;
  box-shadow: var(--pico-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0));
  color: var(--pico-primary-inverse);
}

.excel-download div {
  display: flex;
}

.excel-download button {
  border-radius: 0;
}

.two-dates {
    display: flex;
    gap: 2em;
    margin-top: 0.3em;
}

.two-dates span {
  font-weight: 300;
}

@media screen and (max-device-width:480px){
  .two-dates {
    display: block;
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}


