/* Quick sighting report flow. */

.sighting-lead {
    max-width: 560px;
}

.sighting-map {
    height: 320px;
    margin-top: 10px;
}

@media (max-width: 700px) {
    .sighting-map {
        height: 45vh;
        min-height: 260px;
    }
}

.cat-picker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
}

@media (min-width: 700px) {
    .cat-picker {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cat-pick {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    padding: 10px 12px;
    text-align: left;
    background: #fdfdfc;
    color: #22332b;
    border: 1px solid #d5ddd2;
}

.cat-pick:hover {
    background: #f0f4ee;
    color: #22332b;
    border-color: #2f6d5a;
}

.cat-pick-selected,
.cat-pick-selected:hover {
    background: #2f6d5a;
    color: #fff;
    border-color: #2f6d5a;
}

.cat-pick-selected small {
    color: #d9e6e0;
}

.cat-pick-hidden {
    display: none;
}

.cat-pick img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.cat-pick-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #6b7a72;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 1.3em;
    flex-shrink: 0;
}

.cat-pick-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cat-pick-body small {
    color: #5a6b62;
}

.cat-pick-distance {
    font-weight: bold;
}

.chosen-cat {
    font-size: 1.1em;
}
