/* IDS to know for theming */
/* intro, body, avatar, name, location, bio, social, contactButton, announcement */

body, html {
    background-color: var(--background-color);
    color: var(--text-color);
}

#intro {
    background-color: var(--intro-background-color);
    color: var(--intro-text-color);
}

#contactButton {
    background-color: var(--contact-button-background-color);
    color: var(--contact-button-text-color);
    border: 2px solid var(--contact-button-border-color);
}

#announcement {
    background-color: var(--announcement-bar-background-color);
    color: var(--announcement-bar-text-color);
}


/* custom styles start here */
#avatar {
    border-radius: 9999px;
    width: 200px;
    height: 200px;
}

#name {
    font-weight: bold;
    font-size: 28px;
}

#bio {
    max-width: 400px;
}

#social {
    margin-top: 10px;
}

#social svg {
    fill: var(--intro-text-color);
}

.title_block {
    font-weight: bold;
    font-size: 20px;
    color: var(--title-color);
}

.link_block a {
    background-color: var(--link-button-background-color);
    color: var(--link-button-text-color);
    border: 2px solid var(--link-button-border-color);
    border-radius: 9999px;
}

.review_block {
    gap: 10px;
    display: flex;
    flex-direction: column;
    background-color: var(--secondary-color);
    border-radius: 0.375rem;
    padding: 20px;
}

.review_author {
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* listing styles */
.listing_info {
    padding: 10px;
}

.listing_block {
    overflow: hidden;
    border-radius: 0.375rem;
    background-color: var(--secondary-color);
    z-index: 0;
}

.price_actual {
    font-weight: bold;
    font-size: 20px;
}


.price_compare {
    font-size: 16px;
    text-decoration: line-through;
    opacity: 0.75;
}

.address_primary {
    font-size: 16px;
}

.address_secondary {
    font-size: 16px;
}

.bed_count, .bath_count, .property_size {
    font-size: 12px;
    margin-right: 2px;
}

.bed_bath_icon {
    font-size: 16px;
}

/* listing styles */