.result p{
    margin: 0;
    padding: 7px 10px;
    border: 1px solid #CCCCCC;
    border-top: none;
    cursor: pointer;
}
    
.result p:hover {
    background: #f2f2f2;
}

.add-padding-top-10 {
    padding-top: 10px;
}

.add-padding-top-30 { 
    padding-top: 30px;
}

.bullet-secondary-open-rent { 
    background-color: #9adbe8;
}
.border-end {
    border-right: 1px solid #ebe9f1 !important;
}

/* PAGINATION */

.pagination-container .page-item.active .page-link {
    background-color: var(--color-primary) !important;
}

.pagination-container .page-item {
    -moz-user-select: none;
   -khtml-user-select: none;
   -webkit-user-select: none;
   -ms-user-select: none;
   user-select: none;
}

body:has(> div#loading-container:not([style])) {
    overflow: hidden!important;
}

/* LOADING SPINNER */
#loading-container {
    z-index: 9999;
    display: flex;
}
  
/* Spinners Transparent Overlay */
#loading-container:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgb(178 178 178 / 40%), rgb(0 0 0 / 40%));
    background: -webkit-radial-gradient(rgb(178 178 178 / 40%), rgb(0 0 0 / 40%))
}

.years-dropdown {
    max-height: 15rem;
    overflow: auto;
}

.autocomplete-suggestions {
    border-bottom: 1px solid #e4e4e4;
    border-left: 1px solid #e4e4e4;
    border-right: 1px solid #e4e4e4;
    max-height: 150px;
    overflow-y: auto;
    background-color: white;
    position: absolute;
    z-index: 1000;
    width: 100%
}

.autocomplete-suggestion {
    padding: 8px;
    cursor: pointer;
    width: 100%;
}
.autocomplete-suggestion:hover {
    background-color: #f0f0f0;
}

.badge-tabler {
  --bs-badge-padding-x: 1em;
  --bs-badge-padding-y: 0.49em;
  --bs-badge-font-size: 0.81em;
  --bs-badge-font-weight: 500;
  --bs-badge-color: #fff;
  --bs-badge-border-radius: 0.25rem;
  display: inline-block;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  line-height: 1;
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
}
.badge-tabler:empty {
  display: none;
}
#uploaded_files_preview {
    display: flex;
    flex-wrap: wrap;
    gap: 12.5px;
    margin-top: 10px;
}

#uploaded_files_preview .uploaded-file {
    flex: 0 0 calc(20% - 10px);
    max-width: calc(20% - 10px);
    border: 2px dashed var(--color-primary);
    background: #f8f8f8;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

#uploaded_files_preview .uploaded-file:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

#uploaded_files_preview .uploaded-file .uploaded-file-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: break-all;
}

#uploaded_files_preview .uploaded-file .view-file-container {
    height: 80px;
}

@media (max-width: 1024px) {
    #uploaded_files_preview .uploaded-file {
        flex: 0 0 calc(33.33% - 10px);
        max-width: calc(33.33% - 10px);
    }
}

@media (max-width: 768px) {
    #uploaded_files_preview .uploaded-file {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    #uploaded_files_preview .uploaded-file .view-file-container {
        height: 190px;
    }
}

@media (max-width: 480px) {
    #uploaded_files_preview .uploaded-file {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
