/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

.map-marker {
    background-color: #4285F4;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    padding: 4px 15px;
    position: relative;
    margin-bottom: 15px;

    a {
        color: #FFF;
    }
}

.map-marker::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 0);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #4285F4;
}

.page-wrapper, .tabulator-container {
    min-height: 403px;
}

.page-body {
    flex-grow: 1;
}

ul.list-group {
    position: absolute;
    z-index: 1;
    background-color: #fff;
    left: 0;
    right: 0;

    border-bottom: var(--tblr-list-group-border-width) solid var(--tblr-list-group-border-color);
    max-height: 40vh;
    overflow: auto;
}

ul.list-group li.list-group-item:last-child {
    border-bottom: unset;
}
