body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

#content-container {
    display: flex;
    flex-direction: column;
    width: 90%;
    flex-grow: 1;
    overflow-y: auto;
}

.job-card {
    margin: 20px;
    margin-bottom: 0;
    padding: 20px;
    background-color: rgb(30, 25, 30);
    display: flex;
    flex-direction: column;
}

.job-role-wrapper {
    display: flex;
    align-self: center;
}

.job-role-wrapper > a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    background-color: rgb(35, 30, 35);
}

.job-role-wrapper > a:first-child {
    margin-right: 15px;
}

.job-role-wrapper > a:first-child::after {
    content: "|";
    margin-left: 15px;
}

.location-wrapper {
    font-size: 0.9em;
    color: gray;
    align-self: center;
}

.location-wrapper > span:not(:first-child) {
    margin-left: 10px;
}

.location-wrapper > span:not(:first-child)::before {
    content: "|";
    margin-right: 10px;
}

.candidate-dropdown-wrapper {
    margin-top: 5px;
    background-color: rgb(40, 35, 40);
    flex-grow: 1;
}

.candidate-dropdown-wrapper > span {
    font-weight: bold;
    margin-bottom: 10px;
    cursor: pointer;
}

.candidate-dropdown-wrapper > span::after {
    content: "🔻";
    margin-left: 5px;
}

.candidate-dropdown-wrapper.expanded > div {
    display: block;
}

.candidate-dropdown-wrapper.expanded > span::after {
    content: "🔺";
}

.candidate-dropdown-wrapper > div {
    display: none;
    margin-top: 10px;
}

.connection-row {
    display: flex;
    align-items: center;
    padding: 10px 5px;
}

.connection-row > * {
    margin-left: 15px;
}

.connection-row a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.connection-row > .status-light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}

.connection-row > .status-light-yellow {
    background-color: rgb(252, 252, 21);
}
.connection-row > .status-light-green {
    background-color: rgb(14, 230, 14);
}
.connection-row > .status-light-red {
    background-color: rgb(243, 27, 27);
}
.connection-row > .status-light-orange {
    background-color: rgb(255, 170, 12);
}
.connection-row > .status-light-blue {
    background-color: rgb(53, 124, 255);
}

.job-card .connection-row > .job-wrapper {
    display: none;
}

.connection-row > .job-wrapper {
    margin-left: auto;
    background-color: rgb(50, 45, 50);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9em;
}

.connection-row > .job-wrapper > a {
    margin: 5px;
}

.candidate-row {
    padding: 10px;
    display: flex;
    flex-direction: column;
    background-color: rgb(30, 25, 30);
    margin-bottom: 10px;
}

.candidate-row > .candidate-title {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.candidate-row > .candidate-content {
    display: none;
    flex-direction: column;
    margin-top: 10px;
}

.candidate-row.expanded > .candidate-content {
    display: flex;
}

.candidate-row > .candidate-title > a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

.candidate-row > .candidate-title > span {
    margin-left: 15px;
    font-size: 0.95em;
}

.candidate-row > .candidate-title > .location-wrapper {
    margin-top: 5px;
    font-size: 0.9em;
    color: gray;
    margin-left: auto;
}

.candidate-row > .candidate-content > .connections-list {
    display: flex;
    flex-direction: column;
}
.connections-list > .connection-row:not(:first-child) {
    border-top: 1px solid rgb(50, 45, 50);
}

.candidate-row > .candidate-content > .skills-wrapper > .skill {
    background-color: rgb(50, 45, 50);
    padding: 5px 10px;
    border-radius: 5px;
    margin: 5px;
    font-size: 0.9em;
}

.candidate-row > .candidate-content > .contact-wrapper {
    display: flex;
    flex-direction: column;
    margin: 5px 0px;
}

.candidate-row > .candidate-content > span {
    color: gray;
    font-size: 0.9em;
    cursor: pointer;
    user-select: none;
}

.candidate-row > .candidate-content > .connections-wrapper {
    margin-top: 10px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: rgb(30, 25, 30);
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    max-height: 80%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.modal-content input.updated {
    background-color: rgb(57, 250, 13);
}

textarea#data {
    width: 80vw;
    flex-grow: 1;
    background-color: rgb(30, 25, 30);
    color: whitesmoke;
    margin: 5vh 0 3vh 0;
    border: 3px solid transparent;
    outline: none;
}

textarea#data.dirty {
    border: 3px solid rgb(255, 170, 12);
}

textarea#data.success {
    border: 3px solid rgb(14, 230, 14);
}

textarea#data.failure {
    border: 3px solid rgb(243, 27, 27);
}

button#submit-data {
    padding: 20px;
    margin: 20px;
    border-radius: 5px;
    font-weight: bolder;
}
