/* Loading Button Css */
.circle-progress-button {
    position: relative;
    width: 100%;
    height: 40px;
}

.circle-progress-button.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px;
    animation: spin 1s linear infinite;
    cursor: not-allowed;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.alert {
    width: 100%;
    padding: 12px 16px;
    border-radius: 7px;
    border-style: solid;
    border-width: 1px;
    margin-bottom: 12px;
    font-size: 14px;
}

.alert.alert-success {
    background-color: rgb(188, 245, 205);
    border-color: rgb(109, 241, 82);
    color: rgb(26, 171, 12);
}

.alert.alert-info {
    background-color: rgb(166, 213, 245);
    color: rgb(32, 100, 136);
    border-color: rgb(99, 196, 213);
}


.alert.alert-warning {
    background-color: rgb(246, 229, 167);
    border-color: rgb(206, 187, 110);
    color: rgb(171, 129, 59);
}

.alert.alert-danger {
    background-color: rgb(253, 208, 211);
    border-color: rgb(231, 162, 169);
    color: rgb(208, 101, 101);
}

.search-result-item {
    padding: 10px;
    cursor: pointer;
}

.search-result-item:hover {
    background: #edecf0;
}

.search-result-item img {
    width: 20px;
    margin-left: 5px;
}

.search-result-item-title {
    font-weight: bolder;
}

.search-result-item-address {
    font-size: 1rem;
}

.search-results {
    overflow: auto;
    max-height: 40vh;
}

.search-results:hover {
    background: white !important;
}
