.page-card {
    width: 100%;
    display: inline-block;
    background-color: var(--light);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--dark);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin-top: 2rem;
    margin-bottom: 2rem;
    height: calc(100% - 4rem);
}

.page-card:hover {
    box-shadow: var(--card-shadow-hover);
}

.page-card .image-area {
    aspect-ratio: 1 / 1;
}

.searching-overlay {
    transition: all 0.3s ease;
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-primary);
    color: var(--light);
    z-index: 100;
}

#propertyAdminForm .bootstrap-select>.dropdown-toggle {
    padding: .5rem;
    background-color: var(--color-primary);
    color: var(--white);
}

#openPropertyAdminModal {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
}

.text-highlight {
    color: var(--highlight);
}

#propertyManagementTable td {
    align-content: center;
}

.ccm-page.page-template-property-single-template .btn:after,
.ccm-page.page-template-property-list-template .btn:after {
    content: unset;
}