.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: "Roboto", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* Loading spinner */
#loading-container {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    display: none;
}

#loading {
    /* color: var(--secondary-color-500);*/
    width: 7rem;
    height: 7rem;
}

/* end Loading spinner */

.smart-btn {
    border: none;
    background:inherit;
}

/* ------------ Validation errors ------------ */
.field-validation-error, label.error {
    color: red;
    font-weight: 600;
}

.input-validation-error, input.error, select.error, textarea.error {
    border: 2px solid red;
}

.validation-summary-errors ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-bottom: 1rem;
}

.validation-summary-errors li {
    color: red;
    border-left: 3px solid red;
    padding-left: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
    background-color: rgba(255, 0, 0, 0.05);
    margin-bottom: 2px;
}

/* ------------ end Validation errors ------------ */

.dashboard-box {
    background-color: white;
    padding: 1.25rem;
    border: 1px solid var(--light-color-200);
    border-radius: 0.375rem; /* bootstrap rounded class */
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); /* bootstrap shadow sm class */
}

.callout {
    padding: 0.8rem;
    color: var(--primary-color-500);
    background-color: var(--primary-color-50);
    border-left: 2px solid var(--primary-color-500);
    border-radius: 0.375rem; /* bootstrap rounded class */
    font-size: 0.9rem;
}

.callout-warning {
    color: var(--warning-color-500) !important;
    background-color: var(--warning-color-100) !important;
    border-left: 0.25rem solid var(--warning-color-500) !important;
}

a{
    color: var(--secondary-color-500);
}

/* ---------- SPID Styles ---------- */

.spid-idp-button * {
    box-sizing: content-box;
}

.btn-spid {
    background-color: #0066CC;
    font-family: Titillium Web, HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif !important;
    font-weight: bolder !important;
    border-radius: 0;
}

    .btn-spid:hover {
        background-color: #003366;
    }

/* ---------- end SPID Styles ---------- */

#select-location-map {
    height: 700px;
}

#found-location-map {
    height: 100%;
}

.edit-link > i {
    color: var(--secondary-color-500) !important;
}

.deletable-img-container {
    position: relative;
}

    .deletable-img-container > button {
        display: none;
        position: absolute;
        top: -10px;
        right: -10px;
    }

    .deletable-img-container:hover > button {
        display: block; /* Show the button when hovering over the image container */
    }

.dataTableEditIcon {
    color: var(--primary-color-500) !important;
}

#sidenav-container {
    overflow: auto;
}

#main-content {
    background-color: var(--light-color-100);
    padding: 2rem;
    position: relative;
    min-height: 95vh;
    height: 100%;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

.existing-poi-marker .circlePoiMarker {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color-500); /* Customize the circle's appearance */
    border-radius: 50%; /* Make it circular */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid black;
    transition: 0.1s ease;
    cursor: pointer;
}

.new-poi-marker .circlePoiMarker {
    width: 20px;
    height: 20px;
    background-color: var(--secondary-color-500) !important; /* Customize the circle's appearance */
    border-radius: 50%; /* Make it circular */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid black;
    transition: 0.5s ease;
}



