html, body {
    margin: 0;
    padding: 0;
}
body {
    font-family: sans-serif;
}
table {
    /* border-collapse: collapse; */
    /* Ensures borders between cells are merged */
    /*width: 100%;*/
    /* Optional: makes the table take the full width of its container */
}
th,
td {
    /* border: 1px solid rgba(20, 73, 104, 0.849);
    padding: 5px;
    text-align: left; */
}
.navbar {
    display: flex;
    align-items: center;

    margin: 0px;
    /*margin-bottom: 20px;*/
    padding: 10px;
    background-color:rgb(40, 100, 150);
    color: white;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.navbar a {
    color: white;
}
.navitem {
    margin-right: 20px;
}

.titlebar {
    display: flex;
    align-items: center;

    margin: 0px;
    /*margin-bottom: 20px;*/
    padding: 10px;
    background-color:rgba(135, 170, 194, 0.459);
    
    width: 100%;
}

.content {
    margin: 5px;
    padding: 5px;
}

/* button,
input[type="submit"] {
  background-color: #e6e6e6;
  color: black;
  border: 1px solid #6d6d6d;
  padding: 5px 10px;
  border-radius: 3px;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(97, 97, 97, 0.3);
  transition: background-color 0.1s ease, box-shadow 0.1s ease;
  cursor: pointer;
}

button:hover,
input[type="submit"]:hover {
  background-color: #80bbe2;
  box-shadow: 0 3px 5px rgba(66, 66, 66, 0.5);
}

button:focus,
input[type="submit"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(97, 97, 97, 0.5);
} */

.bigTextArea {
    width: 100em;
    max-width: 100%;
    height: 40em;
    resize: both;
}
