.map-container {
    height: 100%;
    width: 100%;
    grid-template-columns: 1fr 200px;
    display: grid;
    gap: 0px;
}

.tip-map-leaflet {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(16,119,159, 0.75);
    border-radius: 5px 0px 0px 5px;
}

.tip-map-selected-features-container {
    height: 100%;
    width: 100%;
    grid-template-rows: 28px auto;
    display: grid;
    gap: 0px;
    position: relative;
}

.tip-map-selected-features-empty {
    align-items: center;
    padding: 3px;
    background-color: #eee;
    border: 1px solid lightgray;
    font-size: 0.9em;
}

.tip-map-selected-features-selected-row {
    background-color: white !important;
    border: 1px solid teal;
}

.tip-map-selected-features-row {
    display: grid;
    grid-template-columns: 20px 1fr 20px;
    gap: 4px;
    align-items: center;
    cursor: pointer;
    padding: 3px;
    background-color: #eee;
    border: 1px solid lightgray;
}

.tip-map-selected-features-number {
    border-bottom: 1px solid lightgray;
}

.tip-map-selected-features-desc {
    grid-column: span 3;
    font-size: 0.9em;
}

.tip-map-selected-features-header {
    font-weight: 600;
    font-size: 16px;

    color: rgb(24,29,31);
    background-color: #cdd;
    border: 1px solid teal;
    border-bottom: none;
    border-left: none;
    border-radius: 0px 5px 0px 0px;
    position: relative;
    padding: 2px;
}

.tip-map-selected-features-title {
    position: absolute;
    text-align: center;
    width: 100%;

    font-weight:500;
    color: rgb(24, 29, 31);
}

.tip-map-selected-features {
    color: rgb(24,29,31);
    background-color: #bcc;
    border: 1px solid teal;
    border-top: none;
    border-left: none;
    border-radius: 0px 0px 5px 0px;
    position: relative;
    padding: 0px;
}

.tip-map-selected-features-button {
    text-align: center;
    width: 20px;
    height: 20px;
    border: 1px solid transparent;
}

.tip-map-selected-features-button:hover {
    color: teal;
    border: 1px solid teal;
}