.partnerFinder {
    position: relative;
    left: 0;
    right: 0;
    height: 100vh;
}

.homeClickLogo {
    position: sticky;
    z-index: 1000;
    width: 100px;
    aspect-ratio: 3/2;
    left: 5px;
    top: calc(100vh + 120px);
    transform: translate(0%, 100%);
    margin: 20px;
    cursor: pointer;
}

.partner-header {
    position: relative;
    top: 0;
    left: 120px;
    width: calc(100vw - 140px - 100px);
    height: 67px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: right;
}

.partner-header button {
    margin-left: 40px;
}

.setupDate {
    position: relative;
    top: 10%;
    left: 50%;
    padding: 20px 30px 20px 30px;
    transform: translate(-50%, 0%);
}

.players-container {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 60vh;
}

.subtitle {
    color: var(--secondary-color);
    padding-left: 20px;
}

.divider {
    width: 97%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--secondary-color) 10%,
        var(--secondary-color) 90%,
        transparent 100%
    );
    position: relative;
    left: 50%;
    transform: translate(-50%, 0%);
    border-radius: 50%;
}

.playersGrid {
    display: grid;
    grid-template-columns: 1.5fr .5fr 1fr 1fr 1fr .5fr .5fr;
}

.header-row {
    position: relative;
    grid-template-rows: 1fr;
    width: 97%;
    left: 50%;
    transform: translate(-50%, 0%);
    color: var(--cream-white);
}

.colspan2 {
    grid-column: 1 / span 2;
}

.players {
    position: relative;;
    display: flex;
    flex-direction: column;
    width: 97%;
    left: 50%;
    height: 70%;
    margin-bottom: 10px;
    transform: translate(-50%, 0%);
    overflow-y: auto;
    gap: 10px;
    /* background-color: red; */
}

.player {
    position: relative;
    grid-template-rows: 1fr;
    border: 2px solid var(--smoky-gray);
    background-color: var(--cream-white);
    border-radius: 30px;
    transition: .5s cubic-bezier(0.6, -0.28, 0.74, 0.05);
    min-height: 55px;
    height: 55px;
    overflow: hidden;
    cursor: pointer;
}
.player ul {
    font-size: 14px;
    margin: auto 0 auto 0;
}

.expanded {
    min-height: 250px;
    height: 300px;
}

.profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 60px;
}

.profile img {
    padding: 0 10px 0 10px;
}

.player button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: none;
    width: 100px;
}

.table {
    position: relative;
    display: grid;
    width: 95%;
    grid-column: span 7;
    margin: 10px 10px 0 10px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    height: calc(250px - 55px - 20px);
    overflow: auto;
    border: 1px solid var(--smoky-gray);

}

.cel {
    border: 1px solid var(--smoky-gray);
}

.cel.ok {
    background-color: var(--lime-green);
}
.cel.selected {
    background-color: var(--mustard-yellow);
}

.cel .not-ok {
    background-color: var(--smoky-gray);
}

ul {
    margin: 0;
}