body {
    background-color: white;
    padding: 0px;
    margin: 0;
}

h1 {
    font-family: chalkduster, sans-serif;
    text-align: center;
    margin-bottom: 30px;
    background-color: #354f52;
    color: white;
    height: 28vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 4rem;
}

form {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.form-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

input, select, button {
    padding: 8px
}

button {
    background-color: #354f52;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    margin-top: 40px;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

table, form {
    font-family: blippoop, sans-serif;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
    vertical-align: middle;
}

.status-have-not-applied {
  color: white;
  background-color: black;
  font-weight: bold;
}

.status-applied {
  color: white;
  background-color: #ffca3a;
  font-weight: bold;
}

.status-interviewing {
  color: white;
  background-color: #83c5be;
  font-weight: bold;
}

.status-offered {
  color: white;
  background-color: green;
  font-weight: bold;
}

.status-rejected {
  color: white;
  background-color: #800e13;
  font-weight: bold;
}