/**
 * Public styles.
 *
 * @since 1.0.0
 */

/* Update Notification */
.vista-crm-notice {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #0073aa;
    color: #fff;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999999;
    max-width: 300px;
    font-size: 14px;
    line-height: 1.5;
}

/* Property Images Gallery */
.vista-crm-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.vista-crm-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.vista-crm-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vista-crm-gallery-item:hover img {
    transform: scale(1.05);
}

/* Property Meta */
.vista-crm-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.vista-crm-meta-item {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
    text-align: center;
}

.vista-crm-meta-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.vista-crm-meta-value {
    display: block;
    font-size: 20px;
    color: #333;
    font-weight: 700;
}

/* Responsive */
@media screen and (max-width: 600px) {
    .vista-crm-notice {
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .vista-crm-gallery {
        grid-template-columns: 1fr;
    }

    .vista-crm-meta {
        grid-template-columns: 1fr;
    }
}
