.link-card:hover {
    box-shadow: var(--mud-elevation-10);
}

.mud-popover-open {
    min-width: fit-content;
}

.mud-tooltip-root {
    width: auto !important;
}

.mud-tab-badge {
    margin-right: 15px !important;
}

.dark-switch .mud-switch-track {
    background-color: #ffffff !important;
}

.loading-section {
    text-align: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.loading-section h2 {
    color: #000000;
}

.loader-dot {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #c4d600;
    display: inline-block;
    -webkit-animation: grow 2.1s infinite ease-in-out both;
    animation: grow 2.1s infinite ease-in-out both;
}

.loader-dot.dot1 {
    -webkit-animation-delay: -0.96s;
    animation-delay: -0.96s;
}

.loader-dot.dot2 {
    -webkit-animation-delay: -0.48s;
    animation-delay: -0.48s;
}

@-webkit-keyframes grow {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

.hiddenTooltip {
    visibility: hidden;
}

.no-padding-expansion-panel .mud-expand-panel-content {
    padding: 0 !important;
}

/*Starting custom CSS*/

#icon {
    height: 150px;
    position: relative;
    margin-left: 100px;
    align-items: center;
}

.btn-primary {
    margin-top: 15%;
    margin-bottom: 5%;
    width: 80%;
    height: 40px;
    margin-left: 10%;
    margin-right: 5%;
    background-color: #C4D600;
    z-index: 3;
    border: none;
    border-radius: 0.6em;
}

    .btn-primary:hover {
        color: white;
    }

#button {
    margin-top: 10%;
    width: 80%;
    margin-left: 10%;
    margin-right: 5%;
    background-color: #C4D600;
    z-index: 3;
    border: none;
    border-radius: 0.6em;
    height: 40px;
}

    #button:hover {
        color: white;
    }

#images {
    margin-top: 5%;
    display: flex;
    justify-content: center;
}

.image {
    height: 30px;
    margin-bottom: 20px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    margin-bottom: 10px;
    cursor: pointer;
    user-select: none;
}

custom-checkbox input {
    display: none; /* Hide the default checkbox */
}

.custom-checkbox .icon {
    height: 50px;
    margin-right: 30px;
}

.custom-checkbox .text {
    flex-grow: 1;
    display: flex;
    align-items: center; /* Vertically align the text */
    margin-top: 15px;
}

.custom-checkbox .checkbox-label {
    position: relative;
    cursor: pointer;
    margin-left: 30px;
}

    .custom-checkbox .checkbox-label:before {
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 2px solid #C4D600;
        background-color: #fff;
        border-radius: 4px;
        transition: all 0.3s;
    }

.custom-checkbox input:checked + .checkbox-label:before {
    background-color: #C4D600;
    border-color: #C4D600;
}

#map {
    height: 100%;
    width: 100%
}