.input-form {
    width: 400px;
    margin: auto;
}

.planning-card {
    background-color: #111;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 150px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.planning-card.is-active {
    background-color: #fff;
    color: #111
}

.planning-card.is-inactive {
    background-color: #111;
    color: #eee
}

.cards {
    width: 70vw;
    max-width: 700px;
    gap: 30px
}

.voters-relation {
    width: 300px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-overflow: ellipsis;
}

.share-section {
    min-width: 200px;
}

.selected-cards-view {
    display: none;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.selected-cards-view span {
    display: flex;
    background-color: #222;
    width: 40px;
    height: 40px;
    text-align: center;
    vertical-align: center;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
}

.selected-cards-view.is-visible {
    display: flex;
}

.voter-status {
    text-align: end;
}
