/* Unit Preview Styles */
.unit-preview {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

.unit-preview-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.property-unit-count {
    color: #00A499;
    font-weight: 600;
    font-size: 0.875rem;
}

.unit-type-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.unit-type-chip {
    background-color: #f5f5f5;
    border-radius: 1rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.unit-type-name {
    font-weight: 600;
    color: #333;
}

.unit-type-count {
    color: #666;
}

.unit-type-price {
    font-weight: 400;
}

/* Mobile styles */
@media (max-width: 768px) {
    .unit-preview {
        margin-top: 0.375rem;
        padding-top: 0.375rem;
    }
    
    .unit-type-chips {
        gap: 0.2rem;
    }
    
    .unit-type-chip {
        padding: 0.1rem 0.4rem;
        font-size: 0.65rem;
    }
}