@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');

*, html {
  font-family: 'Outfit', sans-serif;
  box-sizing: border-box;
}

.centre {
  font-family: 'Outfit', sans-serif;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  text-align: center;
}

p {
  font-size: 18px;
  text-align: center;
  margin: 12px 0px;
}

input {
  width: 95%;
  height: 35px;
  outline: none;
  font-size: 18px;
  border-radius: 4px;
  border: 1px solid black;
  text-align: center;
}

input:active, input:focus {
  box-shadow: 0 0 0 1px black;
}

button {
  width: 95%;
  height: 35px;
  outline: none;
  border: 1px solid black;
  font-size: 18px;
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
}

button:hover {
  background-color: #F1F1F1;
}

.section {
  width: 95%;
  margin: 10px 0px;
  border: 1px solid #F1F1F1;
  border-radius: 4px;
}

#step-2, #intruder, #fire, #logs, #logs-table {
  display: none;
}

.alert-text {
  margin: 0;
  padding: 0;
  text-align: center;
}

.banner {
  position: fixed;
  bottom: 5%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  border: 1px solid #808080;
  border-radius: 4px;
  background: #f1f1f1;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 6px 0;
}

table {
  border-collapse: collapse;
  width: 95%;
  table-layout: fixed;
}

thead, tbody, tr {
  width: 100%;
}

th, td {
  border: 1px solid black;
  padding: 6px;
  text-align: left;
  font-size: 18px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

th {
  background-color: #F1F1F1;
  font-weight: bold;
}

.col-date {
  width: 20%;
}
.col-title {
  width: 25%;
}
.col-content {
  width: 55%;
}