/************************************************************************
    File name: client-review.css
    Site: villasbysilvia3

    Copyright 2025 Michael J. Miller, All rights reserved

    Purpose: css snippet to standardize styling of client reviews

    Revision History:
    Date        Version     Details
    --------    --------    --------------------------------------------
    2/3/25      3.0a2       Created.

************************************************************************/

/*this is the enclosing box in the Site->Reviews panel*/
.client-review-frame {
    min-width: 330px;
    min-height: 200px;
    border: thin solid gray;
    background-color: white;
    margin: .5em auto;
    padding: 1em;
    width: 50%;
    
    height: 250px;
    overflow: auto;
}

.client-review-name span {
    margin-left: 6px;
    font-size: larger;
    font-weight: 500;
}

.client-review-address {
    font-size: smaller;
    font-weight: 200;
    margin-left: 2em;
    
}
.client-review-address span {
    margin-left: .5em;
}

.client-review-stars {
    margin-top: .75em;
}
.client-review-stars span {
    margin-left: .5em;
    font-size: smaller;
}

.client-review-text p {
    margin-top: .5em;
    margin-bottom: 0;
    font-size: smaller;
}
.client-review-indent {
    text-indent: 1em;
}

