.b1b1b1 a {
    color: #b1b1b1 !important;
    text-decoration: underline dotted !important;

}

.text-orange {
    color: #FFA500 !important;
}

.btn-blue {
    background-color: #1A73E8 !important;
    color: white !important;
}

.btn-orange {
    background-color: orange !important;
    color: white !important;
}

.btn-red {
    background-color: red !important;
    color: white !important;
}

.btn-green {
    background-color: green !important;
    color: white !important;
}

/*for charts*/
.xLabels {
    cursor: pointer;
    /*text-decoration: underline;*/
}

.xLabels:hover {
    color: red;
}

.swal-wide {
    width: 80vw !important;
    height: 80vh !important;
    background-color: unset !important;
}

.swal2-html-container {
    padding: 0 !important;
    overflow: hidden !important;
}

.select2-selection {
    display: flex !important;
}

:root {
    --house-color: #0288D1;
}

/*
* Applicant Map Filter styles in unhighlighted state.
*/
.applicantMapFilter {
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 50%;
    color: #263238;
    display: flex;
    font-size: 14px;
    gap: 15px;
    height: 30px;
    justify-content: center;
    padding: 4px;
    position: relative;
    position: relative;
    transition: all 0.3s ease-out;
    width: 30px;
}

.applicantMapFilter::after {
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid #FFFFFF;
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    top: 95%;
    transform: translate(-50%, 0);
    transition: all 0.3s ease-out;
    width: 0;
    z-index: 1;
}

.applicantMapFilter .icon {
    align-items: center;
    display: flex;
    justify-content: center;
    color: #FFFFFF;
}

.applicantMapFilter .icon svg {
    height: 20px;
    width: auto;
}

.applicantMapFilter .details {
    display: none;
    flex-direction: column;
    flex: 1;
}

.applicantMapFilter .stackname {
    color: #9E9E9E;
    font-size: 10px;
    margin-bottom: 10px;
    margin-top: 5px;
}


/*
* Applicant Map Filter styles in highlighted state.
*/
.applicantMapFilter.highlight {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
    height: 80px;
    padding: 8px 15px;
    width: auto;
}

.applicantMapFilter.highlight::after {
    border-top: 9px solid #FFFFFF;
}

.applicantMapFilter.highlight .details {
    display: flex;
}

.applicantMapFilter.highlight .icon svg {
    width: 50px;
    height: 50px;
}

/*
* House icon colors.
*/
.applicantMapFilter.highlight:has(.fa-house) .icon {
    color: var(--house-color);
}

.applicantMapFilter:not(.highlight):has(.fa-house) {
    background-color: var(--house-color);
}

.applicantMapFilter:not(.highlight):has(.fa-house)::after {
    border-top: 9px solid var(--house-color);
}