/*
    SEARCH STYLE */

.search-form {
    display: flex;
    width: 80%;
    margin-left: 10%;
    margin-bottom: 5px;
}

.search-form input[type='text'] {
    max-width: 400px;
    height: 40px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-right: 0;
}

.search-form input[type='submit'] {
    padding: 5px 20px;
    border: 0;
    display: block;
    background-color: var(--yellow);
    color: black;
    font-weight: bold;
    line-height: 30px;
}


/*
    / SEARCH STYLES */

.people table {
    border: 1px solid #333;
    width: 100%;
}

@media (max-width: 768px) {
    .people table {
        width: 100%;
        margin-left: 0;
    }
    .people table tr th,
    .people table tr td {
        font-size: 12px;
    }
    .people table tr *:nth-child(4),
    .people table tr *:nth-child(5),
    .people table tr *:nth-child(6) {
        display: none;
    }
}

.people table thead {
    background: #1b1918;
    background-size: 70%;
}

.people table th {
    color: #fff;
    text-align: center;
    border-right: 2px solid rgba(0, 0, 0, .5);
}

.people table th:last-of-type {
    border-right: 0;
}

.people table tbody {
    background: #fdf8f2;
}

.people table tbody tr:hover {
    background: #f7eedc;
}

.people table td {
    padding-left: .5em;
    color: #1b1918;
    font-weight: bold;
}

.people table td,
.people table th {
    cursor: default;
}

.people table td:last-of-type {
    border-right: 0;
}