/* Resetting default styles */
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  background: #ffffff;
  color: #000000;
  margin: 0;
  padding: 0;
}

/* Navigation styles */
nav {
  background: #24444c;
  color: aliceblue;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: #000000 1px solid;
}

nav h1 {
  margin: 0;
  padding: 0;
  color: aliceblue;
  font-size: 30px;
  font-weight: 100;
  padding: 10px;
}

nav > button {
  background: #24444c;
  color: aliceblue;
  border: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 100;
  padding: 10px;
  transition: 0.5s;
}

nav > button:hover {
  background: #000000;
}

/* Fullscreen styles */
#fullscreen {
  background-color: #0000005b;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

#fullscreen > .add-new-entry {
  background: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  padding: 10px;
  display: none;
  max-width: 370px;
}

#fullscreen > .add-new-entry > div {
  display: grid;
  width: 100%;
  grid-template-columns: 5fr 1fr;
  align-items: center;
  justify-content: space-between;
}

#fullscreen > .add-new-entry > div > button {
  background: #24444c;
  width: 50px;
  height: 50px;
  color: aliceblue;
  border: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 100;
  padding: 10px;
  transition: 0.5s;
  margin-left: auto;
}

#fullscreen > .add-new-entry > div > button:hover {
  background: #000000;
}

.add-new-entry > form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

.add-new-entry > button {
  background: #24444c;
  color: aliceblue;
  border: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 100;
  padding: 10px;
  transition: 0.5s;
  width: 100%;
  margin-top: 20px;
}

/* Navigation list styles */
nav ul {
  list-style: none;
  grid-template-columns: auto auto;
}

/* Search container styles */
.search-container {
  position: relative;
}

input[type=search] {
  border-radius: 10px;
  padding: 5px;
  border: #000000 1px solid;
  position: absolute;
  right: 35px;
  height: 30px;
}

img {
  position: absolute;
  top: 50%;
  right: 2px;
  background: rgba(0, 0, 0, 0);
}

/* Help search styles */
.helpsearch {
  background: #ffffff;
  color: #000000;
  border: #000000 1px solid;
  border-radius: 5px;
  position: absolute;
  right: 20px;
  top: 50px;
}

.HelpSVG {
  cursor: help;
}

.helpsearch p {
  padding: 0px;
  margin: 0;
  padding-top: 5px;
  padding-left: 10px;
}

.helpsearch p:last-of-type {
  padding-bottom: 5px;
}

/* Table styles */
table {
  border: 1px solid #000000;
  border-collapse: collapse;
  width: 100%;
}

th, td {
  border: 1px solid #000000;
  padding: 5px;
}

tr:nth-child(odd) {
  background: #ffffff;
}

tr:nth-child(even) {
  background: #20bce3;
}

/* Link styles */
a {
  text-decoration: none;
  color: #000000;
}
